Skip to content

Commit

Permalink
Fix boost linking errors (moveit#900) for latest rolling
Browse files Browse the repository at this point in the history
  • Loading branch information
Vatan Aksoy Tezer authored and bijoua29 committed Jan 19, 2022
1 parent 8b7a15b commit 3a0bc4b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions moveit_core/distance_field/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ ament_target_dependencies(${MOVEIT_LIB_NAME}
tf2_eigen
OCTOMAP
)
target_link_libraries(${MOVEIT_LIB_NAME} Boost::iostreams)

install(DIRECTORY include/ DESTINATION include)

Expand Down
2 changes: 1 addition & 1 deletion moveit_core/utils/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ install(DIRECTORY include/ DESTINATION include)
find_package(ament_index_cpp REQUIRED)
set(MOVEIT_TEST_LIB_NAME moveit_test_utils)
add_library(${MOVEIT_TEST_LIB_NAME} SHARED src/robot_model_test_utils.cpp)
target_link_libraries(${MOVEIT_TEST_LIB_NAME} moveit_robot_model)
target_link_libraries(${MOVEIT_TEST_LIB_NAME} moveit_robot_model Boost::regex)
ament_target_dependencies(${MOVEIT_TEST_LIB_NAME}
ament_index_cpp
Boost
Expand Down
1 change: 1 addition & 0 deletions moveit_ros/occupancy_map_monitor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ set_target_properties(${MOVEIT_LIB_NAME} PROPERTIES VERSION "${${PROJECT_NAME}_V
ament_target_dependencies(${MOVEIT_LIB_NAME}
${THIS_PACKAGE_INCLUDE_DEPENDS}
)
target_link_libraries(${MOVEIT_LIB_NAME} Boost::thread)

add_executable(moveit_ros_occupancy_map_server src/occupancy_map_server.cpp)
ament_target_dependencies(moveit_ros_occupancy_map_server
Expand Down

0 comments on commit 3a0bc4b

Please sign in to comment.