Add Boost on the include and link path.

It was only done when the auto-build was triggered, resulting in build errors
when Boost is available on the system but not on the standard paths.
This commit is contained in:
Roberto Di Remigio 2015-09-28 14:39:47 +02:00
parent f38a89dd9f
commit 2bf4aeb9eb

View File

@ -150,10 +150,10 @@ if(BUILD_CUSTOM_BOOST)
list(APPEND Boost_LIBRARIES ${Boost_${_COMP}_LIBRARY})
endforeach()
set(Boost_INCLUDE_DIRS ${Boost_INCLUDE_DIR})
include_directories(SYSTEM ${Boost_INCLUDE_DIRS})
set(Boost_LIBRARY_DIRS ${Boost_LIBRARY_DIR})
if(CMAKE_SYSTEM_NAME MATCHES "Linux")
list(APPEND Boost_LIBRARIES rt)
endif()
link_directories(${Boost_LIBRARY_DIRS})
endif(BUILD_CUSTOM_BOOST)
include_directories(SYSTEM ${Boost_INCLUDE_DIRS})
link_directories(${Boost_LIBRARY_DIRS})