Browse Source

Have linmath's CMakeLists check for HAVE_EIGEN instead of FOUND_EIGEN.

kestred 12 years ago
parent
commit
8e681876c0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/linmath/CMakeLists.txt

+ 1 - 1
panda/src/linmath/CMakeLists.txt

@@ -42,7 +42,7 @@ set(P3LINMATH_SOURCES
   lvector2.cxx lvector3.cxx lvector4.cxx mathNumbers.cxx
   lvector2.cxx lvector3.cxx lvector4.cxx mathNumbers.cxx
 )
 )
 
 
-if(EIGEN_FOUND)
+if(HAVE_EIGEN)
   include_directories(${EIGEN3_INCLUDE_DIR})
   include_directories(${EIGEN3_INCLUDE_DIR})
 endif()
 endif()