In my ROS package I would like to use a last stable version of Eigen which is 3.3.4.
However when I check my version into package by EIGEN_MAJOR_VERSION, EIGEN_WORLD_VERSION, EIGEN_MINOR_VERSION
I have got a 3.3.90.
In my CMakeList:
find_package(Eigen3 REQUIRED)
include_directories(include ${EIGEN3_INCLUDE_DIR}
find_package for specific version does not exists.
So how can I change the version? I downloaded Eigen from official github. I built it bysudo make install
I got a log that everything is updated.
Up-to-date: /usr/local/include/eigen3/...
Thanks.