File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -34,9 +34,14 @@ if(SANITIZERS)
34
34
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-sanitize-recover=all" )
35
35
endif ()
36
36
37
+ # Disable deprecated internal FindBoost module if possible.
38
+ if (POLICY CMP0167)
39
+ cmake_policy (SET CMP0167 NEW)
40
+ endif ()
41
+
37
42
# find Boost
38
43
set (Boost_VERBOSE TRUE )
39
- find_package (Boost CONFIG REQUIRED
44
+ find_package (Boost REQUIRED
40
45
COMPONENTS filesystem
41
46
program_options
42
47
regex
@@ -127,7 +132,7 @@ macro(build_pycsdiff version)
127
132
128
133
# find boost_python${version}
129
134
set (PYTHON_VERSION_SUFFIX "${version} ${Python${version} _VERSION_MINOR}" )
130
- find_package (Boost CONFIG REQUIRED COMPONENTS python${PYTHON_VERSION_SUFFIX} )
135
+ find_package (Boost REQUIRED COMPONENTS python${PYTHON_VERSION_SUFFIX} )
131
136
message (STATUS "Python ${version} binding enabled. "
132
137
"The pycsdiff module will be built!" )
133
138
You can’t perform that action at this time.
0 commit comments