Skip to content

Latest commit

 

History

History
135 lines (86 loc) · 6.2 KB

CompilationWindows.md

File metadata and controls

135 lines (86 loc) · 6.2 KB
Tutorials Home Next

Compiling and Installing libpointmatcher on Windows

Compiling using MSVC (Microsoft Visual Studio)

In Short...

If you are used to development project, here is what you need:

Name Link Version
(Tested March 29, 2014)
Windows 7
git http://windows.github.com/ v1.0
libpointmatcher sources https://github.com/ethz-asl/libpointmatcher
libnabo sources https://github.com/ethz-asl/libnabo
Visual Studio http://www.microsoft.com/visualstudio/eng/downloads Visual Studio 2012 Express for Windows Desktop
CMake http://www.cmake.org/cmake/resources/software.html cmake-2.8.11.2-win32-x86.exe
Eigen 3 http://eigen.tuxfamily.org/index.php?title=Main_Page#Download v3.2.0
Boost http://www.boost.org/users/download/ v1.54.0
grep tool http://gnuwin32.sourceforge.net/packages/grep.htm v2.5.4

The rest of this tutorial will guide you through the different requirements step by step.

Install grep tool

Install grep by following the instructions in http://gnuwin32.sourceforge.net/packages/grep.htm. You might need to modify the Path environment variables to make sure that grep can be run from anywhere. To test:

cd\
grep --version

Building Boost

  1. Open a console that knows the path to the MSVC compiler command (cl). We suggest using Windows PowerShell. An alternative is Developer Command Prompt, which can be located in the Start menu in the Visual Studio section.

  2. Go to your Boost source directory, and do:

    $ bootstrap
    $ b2 install --prefix=build address-model=64
    
  3. It may take a while to finish.

Build libnabo

  1. Start CMake GUI

  2. Add the path of your libnabo source folder in the field Where is the source code.

  3. Add a folder named build in the field Where to build the binary. This will allow you to do out-of-source compilation.

  4. Click on the button Configure

    1. Select the generator for the project (Visual Studio 11 Win 64)
    2. Typically you will select "Use default native compilers" for the generator
    3. Click "Finish"
    4. An error will be reported, because CMake does not know yet where to find the libraries. The next steps will tell it where to find them.
  5. Locate your eigen folder in the field EIGEN_INCLUDE_DIR

  6. Add the following boolean variable and set it to true: Boost_USE_STATIC_LIBS

  7. Add the following PATH variable and set it to (your boost folder)/build: BOOST_ROOT

  8. Change the variable CMAKE_CONFIGURATION_TYPES to RelWithDebInfo

  9. Click on the button Configure again, then on Generate. Here is an example of what your CMake should look like:

    alt text

  10. Locate the Microsoft Visual Studio Solution file (libnabo.sln) in the your build folder and open it. Visual Studio should open.

  11. Build the solution: BUILD -> Build Solution

    Alternatively, you can build the solution from the command line. In (your libnabo folder)/build:

    $ msbuild /m:2 libnabo.sln
    

    (Note that the flag /m:X defines the number of cores msbuild will use while building the solution.)

Build libpointmatcher

  1. Start CMake GUI, follow the same steps to configure the source and build folders for libpointmatcher, then click the Configure button.

  2. Add the following boolean variable and set it to true: Boost_USE_STATIC_LIBS

  3. Add the following PATH variable and set it to (your Boost folder)/build: BOOST_ROOT

  4. Change the variable CMAKE_CONFIGURATION_TYPES to RelWithDebInfo

  5. You will need to manually add and set the following variables:

    • EIGEN_INCLUDE_DIR (PATH type) to (your eigen source folder)
    • NABO_INCLUDE_DIR (PATH type) to (your libnabo source folder)
    • NABO_LIBRARY (FILEPATH type) to (your libnabo source folder)/build/RelWithDebInfo/nabo.lib
    • libnabo_DIR will automatically be set to your libnabo build folder
    • yaml-cpp_INCLUDE_DIRS (PATH type) to (your yaml-cpp source folder)
    • yaml-cpp_LIBRARIES (FILEPATH type) to (your yaml-cpp source folder)/build/RelWithDebInfo/libyaml-cppmd.lib
    • GTEST_INCLUDE_DIR (PATH type) to (your gtest source folder)
    • GTEST_LIBRARY (FILEPATH type) to (your gtest source folder)/build/RelWithDebInfo/gtest.lib
    • GTEST_MAIN_LIBRARY (FILEPATH type) to (your gtest source folder)/build/RelWithDebInfo/gtest_main.lib
  6. Click on the button Configure, then on Generate. Here is an example of what your CMake should look like:

    alt text

  7. In Visual Studio, build the solution: BUILD -> Build Solution

    Alternatively, you can build the solution from the command line. In (your libpointmatcher folder)/build:

    $ msbuild /m:2 libpointmatcher.sln
    

    (Note that the flag /m:X defines the number of cores msbuild will use while building the solution.)

Reporting Issues

Currently, we don't have a developer fully supporting compilation on Windows. If you can help refreshing this documentation, your help is more than welcome.

Before reporting new building issues, have a look in the current/past list of issues. Add as much details as you can since you will most probably receive answers from developers that cannot reproduce the problem on their side. Here are some of them:

  • Your directory structure need to be well organized as mention in Issue #136.
  • There might be some problems related to libnabo as mention in Issue #128.

Special Thanks

Special thanks to the following users in helping us with the Windows support: