Fix Eigen detection

This commit is contained in:
Clement Jamin 2014-07-07 14:18:04 +02:00
parent a83605cf94
commit 1f455f621d
3 changed files with 30 additions and 24 deletions

View File

@ -24,17 +24,15 @@ if ( CGAL_FOUND )
find_package(Eigen3 3.1.0)
if (EIGEN3_FOUND)
include( ${EIGEN3_USE_FILE} )
endif()
include_directories (BEFORE "../../include")
include_directories (BEFORE "include")
create_single_source_cgal_program( "delaunay.cpp" )
else()
message(STATUS "NOTICE: Some of the executables in this directory need Eigen 3.1 (or greater) and will not be compiled.")
endif()
else()
message(STATUS "This program requires the CGAL library, and will not be compiled.")
endif()

View File

@ -24,8 +24,6 @@ if ( CGAL_FOUND )
find_package(Eigen3 3.1.0)
if (EIGEN3_FOUND)
include( ${EIGEN3_USE_FILE} )
endif()
include_directories (BEFORE "../../include")
create_single_source_cgal_program( "barycentric_subdivision.cpp" )
@ -34,6 +32,10 @@ if ( CGAL_FOUND )
create_single_source_cgal_program( "triangulation_data_structure_dynamic.cpp" )
create_single_source_cgal_program( "triangulation_data_structure_static.cpp" )
else()
message(STATUS "NOTICE: Some of the executables in this directory need Eigen 3.1 (or greater) and will not be compiled.")
endif()
else()
message(STATUS "This program requires the CGAL library, and will not be compiled.")

View File

@ -26,8 +26,10 @@ if ( CGAL_FOUND )
include( ${EIGEN3_USE_FILE} )
endif()
find_package(Eigen3 3.1.0)
if (EIGEN3_FOUND)
include( ${EIGEN3_USE_FILE} )
include_directories (BEFORE "../../include")
include_directories (BEFORE "include")
create_single_source_cgal_program( "test_delaunay.cpp" )
@ -35,6 +37,10 @@ if ( CGAL_FOUND )
create_single_source_cgal_program( "test_torture.cpp" )
create_single_source_cgal_program( "test_triangulation.cpp" )
else()
message(STATUS "NOTICE: Some of the executables in this directory need Eigen 3.1 (or greater) and will not be compiled.")
endif()
else()
message(STATUS "This program requires the CGAL library, and will not be compiled.")