We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f90d22b commit 081d2f6Copy full SHA for 081d2f6
CMakeLists.txt
@@ -33,7 +33,7 @@ endforeach()
33
if(POLICY CMP0167)
34
cmake_policy(SET CMP0167 NEW)
35
endif()
36
-find_package(Boost QUIET COMPONENTS headers)
+find_package(Boost COMPONENTS headers)
37
if(NOT Boost_headers_FOUND)
38
find_package(Boost REQUIRED)
39
@@ -83,7 +83,7 @@ if(BUILD_TESTING)
83
target_link_libraries(realtime_buffer_tests realtime_tools)
84
85
ament_add_gmock(lock_free_queue_tests test/lock_free_queue_tests.cpp)
86
- target_link_libraries(lock_free_queue_tests realtime_tools atomic)
+ target_link_libraries(lock_free_queue_tests realtime_tools atomic Boost::boost)
87
88
ament_add_gmock(realtime_clock_tests test/realtime_clock_tests.cpp)
89
target_link_libraries(realtime_clock_tests realtime_tools)
0 commit comments