Skip to content

Commit

Permalink
Specify library destination for install targets. (#261)
Browse files Browse the repository at this point in the history
Signed-off-by: Mukunda Bharatheesha <mukunda.bharatheesha@nobleo.nl>
  • Loading branch information
mbharatheesha authored Feb 12, 2025
1 parent 44e6c88 commit c4e9dd9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions nebula_ros/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -215,11 +215,11 @@ rclcpp_components_register_node(continental_srr520_ros_wrapper
EXECUTABLE continental_srr520_ros_wrapper_node
)

install(TARGETS hesai_ros_wrapper EXPORT export_hesai_ros_wrapper)
install(TARGETS velodyne_ros_wrapper EXPORT export_velodyne_ros_wrapper)
install(TARGETS robosense_ros_wrapper EXPORT export_robosense_ros_wrapper)
install(TARGETS continental_ars548_ros_wrapper EXPORT export_continental_ars548_ros_wrapper)
install(TARGETS continental_srr520_ros_wrapper EXPORT export_continental_srr520_ros_wrapper)
install(TARGETS hesai_ros_wrapper EXPORT export_hesai_ros_wrapper LIBRARY DESTINATION lib)
install(TARGETS velodyne_ros_wrapper EXPORT export_velodyne_ros_wrapper LIBRARY DESTINATION lib)
install(TARGETS robosense_ros_wrapper EXPORT export_robosense_ros_wrapper LIBRARY DESTINATION lib)
install(TARGETS continental_ars548_ros_wrapper EXPORT export_continental_ars548_ros_wrapper LIBRARY DESTINATION lib)
install(TARGETS continental_srr520_ros_wrapper EXPORT export_continental_srr520_ros_wrapper LIBRARY DESTINATION lib)
install(DIRECTORY include/ DESTINATION include/${PROJECT_NAME})

if(BUILD_TESTING)
Expand Down

0 comments on commit c4e9dd9

Please sign in to comment.