ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

You have to explicitly specify which files should be installed in your CMakeLists.txt file:

install(
  FILES nodelets.xml
  DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)

You have to explicitly specify which files should be installed in your CMakeLists.txt file:file (assuming the file specifying your nodelet is calles nodelets.xml and is beside the CMakeLists.txt file):

install(
  FILES nodelets.xml
  DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)