ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Try adding these:
find_package(Eigen REQUIRED)
include_directories(SYSTEM ${Boost_INCLUDE_DIR} ${EIGEN_INCLUDE_DIRS})
I did this after I saw the moveit pr2 tutorials by Sachin Chitta.
2 | No.2 Revision |
Try adding these:these lines to your CMakeLists.txt:
find_package(Eigen REQUIRED)
include_directories(SYSTEM ${Boost_INCLUDE_DIR} ${EIGEN_INCLUDE_DIRS})
I did this after I saw the moveit pr2 tutorials by Sachin Chitta.