From 1cd5d9e99aed979c810449f27cc0de07a0c44101 Mon Sep 17 00:00:00 2001 From: vonhyou Date: Thu, 1 Feb 2024 18:52:28 -0500 Subject: [PATCH] find eigen to try to fix pipeline --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index f55740d..a67b4ab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,6 +29,7 @@ set(CMAKE_CXX_STANDARD 14) # Configure Eigen set(ENV{EIGEN3_ROOT} /usr/include/eigen3/Eigen) find_package(Eigen3 REQUIRED) +include_directories(${EIGEN3_INCLUDE_DIR}) include_directories(/usr/include/eigen3) # These folders include some important header files including the header files for your own solution