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

If you're seeing that error when you try to run your node, then I believe you're on the right track. After you build your package, those libraries in your package's lib folder don't get installed. Adding something like

install(
  DIRECTORY lib/
  DESTINATION lib
)

may do the trick.