Add boost link dir on Windows #678

This commit is contained in:
matlabbe
2021-01-17 15:06:47 -05:00
parent c49785061f
commit 814a243693

View File

@@ -445,6 +445,10 @@ IF(libpointmatcher_FOUND OR GTSAM_FOUND)
IF(Boost_MINOR_VERSION GREATER 47)
find_package(Boost COMPONENTS thread filesystem system program_options date_time chrono timer REQUIRED)
ENDIF(Boost_MINOR_VERSION GREATER 47)
IF(WIN32)
MESSAGE(STATUS "Boost_LIBRARY_DIRS=${Boost_LIBRARY_DIRS}")
link_directories(${Boost_LIBRARY_DIRS})
ENDIF(WIN32)
ENDIF(libpointmatcher_FOUND OR GTSAM_FOUND)
IF(WITH_LOAM)