From 4aa6f4712eeb17976225b24dfbc47769541233fe Mon Sep 17 00:00:00 2001 From: vonhyou Date: Thu, 1 Feb 2024 16:54:32 -0500 Subject: [PATCH] update cmakelist --- CMakeLists.txt | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1bd0b06..99e59c7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,16 +31,7 @@ set(CMAKE_PREFIX_PATH /opt/local # Macports ) -# ENCS Eigen3 CMake setup -if (WIN32) -include_directories(C:/Users/ambec/Desktop/labs/COMP371_all/COMP371_RaytracerBase/code/eigen-3.4.0/)# for windows you can directly hardcode the paths to your libraries in the include -else() -set(ENV{EIGEN3_ROOT} /usr/include/eigen3/Eigen) -# set(CMAKE_MODULE_PATH /encs/pkg/eigen-3.3.7/root/cmake) - -find_package(Eigen3 REQUIRED) -include_directories(${EIGEN3_INCLUDE_DIR}) -endif() +include_directories(/usr/include/eigen3) # If you need too manually add the paths to your Eigen library, you can add it here # do not delete the other