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 e8c5090 commit 2fbd2ccCopy full SHA for 2fbd2cc
include/BoostRoot.cmake
@@ -217,7 +217,11 @@ function(__boost_scan_dependencies lib var sub_folder)
217
218
foreach(dep IN LISTS libs)
219
string(REGEX REPLACE "^Boost::" "" dep ${dep})
220
- string(REGEX REPLACE "^numeric_" "numeric/" dep ${dep})
+ if(dep MATCHES "unit_test_framework|prg_exec_monitor|test_exec_monitor")
221
+ set(dep "test")
222
+ else()
223
+ string(REGEX REPLACE "^numeric_" "numeric/" dep ${dep})
224
+ endif()
225
list(APPEND result ${dep})
226
endforeach()
227
0 commit comments