From 97f45f55b277d0d94d0372f5abb25e9c41593ef8 Mon Sep 17 00:00:00 2001 From: vonhyou Date: Thu, 1 Feb 2024 18:50:51 -0500 Subject: [PATCH] find eigen to try to fix pipeline --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a9509d1..f55740d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,9 +26,9 @@ set(CMAKE_BUILD_TYPE Debug) set(CMAKE_CXX_STANDARD 14) +# Configure Eigen +set(ENV{EIGEN3_ROOT} /usr/include/eigen3/Eigen) find_package(Eigen3 REQUIRED) - -# Include Eigen include_directories(/usr/include/eigen3) # These folders include some important header files including the header files for your own solution