ros_astra_camera icon indicating copy to clipboard operation
ros_astra_camera copied to clipboard

Launch files are not installed

Open jglov3id opened this issue 3 years ago • 0 comments

The following install command is missing from CMakeLists.txt:

install(DIRECTORY launch
  DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
  )

Here is a diff that will fix the issue:

diff --git a/CMakeLists.txt b/CMakeLists.txt index 7f94ace..39a5e48 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -193,3 +193,7 @@ install(TARGETS camera_node libuvc_camera_nodelet LIBRARY DESTINATION ${CATKIN_PACKAGE_LIB_DESTINATION} RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} ) + +install(DIRECTORY launch

  • DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
  • )

jglov3id avatar Apr 06 '21 22:04 jglov3id