From 8e681876c08ee9fa6e2c1b44bbc165464639650b Mon Sep 17 00:00:00 2001 From: kestred Date: Sun, 19 Jan 2014 02:58:53 -0700 Subject: [PATCH] Have linmath's CMakeLists check for HAVE_EIGEN instead of FOUND_EIGEN. --- panda/src/linmath/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/linmath/CMakeLists.txt b/panda/src/linmath/CMakeLists.txt index 439cf1656d..751c45039b 100644 --- a/panda/src/linmath/CMakeLists.txt +++ b/panda/src/linmath/CMakeLists.txt @@ -42,7 +42,7 @@ set(P3LINMATH_SOURCES lvector2.cxx lvector3.cxx lvector4.cxx mathNumbers.cxx ) -if(EIGEN_FOUND) +if(HAVE_EIGEN) include_directories(${EIGEN3_INCLUDE_DIR}) endif()