ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Eigen is now an external library so if you use Eigen, make sure your CMakeLists.txt has:
find_package(Eigen REQUIRED)
include_directories(${Eigen_INCLUDE_DIRS})
so your code will compile. You don't need to add common_rosdeps anymore for Fuerte, you are correct, it is depreciated.