Skip to content

Commit

Permalink
fixed topic transport installation
Browse files Browse the repository at this point in the history
  • Loading branch information
klaxalk committed Oct 2, 2023
1 parent 1b2f4fd commit 5917a52
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions nimbro_topic_transport/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -166,16 +166,30 @@ if(catch_ros_FOUND)
add_rostest(test/transceiver.test ARGS port:=5780 fec:=false)
endif()

#install
## --------------------------------------------------------------
## | Install |
## --------------------------------------------------------------

install(TARGETS nimbro_topic_transport sender receiver action_proxy transceiver
ARCHIVE DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION}
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)

install(FILES utils/get_msg_def.py
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)
install(DIRECTORY launch
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)

install(DIRECTORY utils/
USE_SOURCE_PERMISSIONS
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)

install(DIRECTORY utils
USE_SOURCE_PERMISSIONS
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)

install(FILES rqt_plugin.xml bandwidth_plugin.xml
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)

0 comments on commit 5917a52

Please sign in to comment.