ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
I was following the same tutorial and had the same problem. Adding std=c++11 did not solve the error for me. The thing that solved my problem was adding kdl_parser
to find_package
list.
So the CMakeLists.txt
should have the following
find_package(catkin REQUIRED COMPONENTS
roscpp
kdl_parser
)