ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
You need to add the include folder of your package to the include_directories() call:
include_directories(
include
${catkin_INCLUDE_DIRS}
)
Your CMake file also lacks some install rules to install your headers and artifacts.
2 | No.2 Revision |
You need to add the include folder of your package to the include_directories() call:
include_directories(
include
${catkin_INCLUDE_DIRS}
)
Your CMake file also lacks some install rules to install your headers and artifacts.artifacts (but that is a different topic).