ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Here is the currently recommended solution from the Catkin API docs.
2 | No.2 Revision |
Here is the currently recommended solution from the Catkin API docs.
It pretty closely matches your option 2. The pattern matching is not needed unless you have non-header files in your include/${PROJECT_NAME}
tree, but avoiding any .svn
subdirectories is needed with SVN repositories.
3 | No.3 Revision |
4 | No.4 Revision |
5 | No.5 Revision |
6 | No.6 Revision |
Here is the currently recommended solution from the Catkin API docs.
install(DIRECTORY include/${PROJECT_NAME}/
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION})
It pretty closely matches your option 2. The pattern matching is not needed unless you have non-header files in your include/${PROJECT_NAME}
tree, but avoiding any .svn
subdirectories is needed with SVN repositories.
7 | No.7 Revision |
Here is the currently recommended solution from the Catkin API docs.docs:
install(DIRECTORY include/${PROJECT_NAME}/
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION})
It pretty closely matches your option 2. The pattern matching is not needed unless you have non-header files in your include/${PROJECT_NAME}
tree, but avoiding any .svn
subdirectories is needed with SVN repositories.