We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbc26ed commit a9dd162Copy full SHA for a9dd162
CMakeLists.txt
@@ -68,6 +68,11 @@ option(SUFFIX_SO_VERSION "Suffix library name with its version" OFF)
68
option(BUILD_TESTING_SCIPY
69
"Build the SciPy tests (scipy should be installed on the machine)" ON)
70
71
+# Use BoostConfig module distributed by boost library instead of using FindBoost
72
+# module distributed by CMake
73
+if(POLICY CMP0167)
74
+ cmake_policy(SET CMP0167 NEW)
75
+endif()
76
include("${JRL_CMAKE_MODULES}/base.cmake")
77
compute_project_args(PROJECT_ARGS LANGUAGES CXX)
78
project(${PROJECT_NAME} ${PROJECT_ARGS})
0 commit comments