grid_map icon indicating copy to clipboard operation
grid_map copied to clipboard

fatal error: Eigen/Core: No such file or directory

Open artivis opened this issue 8 years ago • 2 comments

Not sure why but on my machine EIGEN3_INCLUDE_DIR is empty while EIGEN3_INCLUDE_DIRS has the include path properly defined.

Ubuntu 14.04 + ROS Indigo.

(Related to closed #152)

artivis avatar Dec 05 '17 10:12 artivis

Thanks but this is not the issue as cmake finds Eigen without any problem.

artivis avatar Jan 18 '18 10:01 artivis

add to CMakelists.txt

find_package(catkin REQUIRED COMPONENTS
  eigen_conversions
)

add to package.xml:

  <build_depend>eigen_conversions</build_depend>
  <run_depend>eigen_conversions</run_depend>

void-robotics avatar Nov 05 '18 17:11 void-robotics