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

Check out the example project in the pr2_moveit_tutorials.

In particular, you need to include moveit_core and moveit_ros_planning_interface in your CMakeLists.txt as follows:

# ...
find_package(catkin REQUIRED COMPONENTS
    # ...
    moveit_core
    moveit_ros_planning_interface
)

catkin_package(
    CATKIN_DEPENDS
    # ...
    moveit_core
    moveit_ros_planning_interface
)
# ...

Make sure to add moveit_core and moveit_ros_planning_interface as build_depend and exec_depend to your package.xml.