ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Take a look in the migration web page here.
Eigen is in fuerte differently used then in prior versions:
Starting with Fuerte, the new pattern to find Eigen in a CMakeLists.txt file is:
find_package(Eigen REQUIRED) include_directories(${EIGEN_INCLUDE_DIRS}) add_definitions(${EIGEN_DEFINITIONS})
2 | No.2 Revision |
Take a look in the migration web page here.
Eigen is in fuerte differently used then in prior versions:
Starting with Fuerte, the new pattern to find Eigen in a CMakeLists.txt file is:
find_package(Eigen
REQUIRED)REQUIRED)include_directories(${EIGEN_INCLUDE_DIRS})include_directories(${EIGEN_INCLUDE_DIRS})
add_definitions(${EIGEN_DEFINITIONS})