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're missing a dependency on rcutils. You have an <exec_depend> only currently which says that the package needs to be available at runtime but not at build time. Thus rcutils is not provided when you try to build the package.

You should probably be declaring <depends> to get it at buildtime and at runtime.

If you have it in your workspace at build time CMake will find it. The debian builds are strict about only provisioning your declared dependencies.