ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Hi, ty Giro Ono, you saved me, even if your code was not completely ok... I solved the issue changing CMakelist.txt AND package.xml
In CMakelist.txt :
find_package(catkin REQUIRED COMPONENTS roscpp std_msgs rosily)
and
catkin_package(INCLUDE_DIRS include CATKIN_DEPENDS roscpp std_msgs roslib)
In package.xml
<build_depend>roslib</build_depend> <run_depend>roslib</run_depend>
Pb solved ! (kinetic, c++11, ubuntu 16.04)