ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
The CATKIN_PACKAGE_BIN_DESTINATION
variable only contains a relative path. You need to additionally use CATKIN_DEVEL_PREFIX
. So combined you want to install to:
"${CATKIN_PACKAGE_BIN_DESTINATION}/${CATKIN_PACKAGE_BIN_DESTINATION}`
which will be:
<develspace>/lib/${PROJECT_NAME}
2 | No.2 Revision |
The CATKIN_PACKAGE_BIN_DESTINATION
variable only contains a relative path. You need to additionally use CATKIN_DEVEL_PREFIX
. So combined you want to install to:
"${CATKIN_PACKAGE_BIN_DESTINATION}/${CATKIN_PACKAGE_BIN_DESTINATION}`
"${CATKIN_DEVEL_PREFIX}/${CATKIN_PACKAGE_BIN_DESTINATION}`
which will be:
<develspace>/lib/${PROJECT_NAME}