You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i fixed it by changing following lines in CMakeLists.txt:
lines 132-150 into:
#--------------------
# DEPENDENCY: eigen 3
#--------------------
# find_path(EIGEN_INCLUDE_DIR NAMES signature_of_eigen3_matrix_library
# HINTS ENV EIGEN3_INC_DIR
# ENV EIGEN3_DIR
# PATHS Eigen/Core
# /usr/local/include
# /usr/include
# PATH_SUFFIXES include eigen3 eigen
# DOC "Directory containing the Eigen3 header files"
# )
# Suppress Eigen's warning by adding it to the system's library
# include_directories(SYSTEM "${EIGEN_INCLUDE_DIR}")
#TODO: this should be a more standard way
find_package(Eigen3 REQUIRED)
message("-- eigen3 , version ${EIGEN_VERSION}")
Does somebody know what this is about?
This is on linux using gcc 7.5, 8 and 10 and eigen 3.4.0 boost 1.5.5 and 1.6.5.
The text was updated successfully, but these errors were encountered: