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 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.

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).