mirror of https://github.com/CGAL/cgal
12 lines
402 B
CMake
12 lines
402 B
CMake
# This module setups the compiler for using Eigen v3 library.
|
|
# It assumes that find_package(Eigen3) was already called.
|
|
|
|
|
|
include_directories( SYSTEM ${EIGEN3_INCLUDE_DIR} )
|
|
|
|
add_definitions(-DCGAL_EIGEN3_ENABLED)
|
|
|
|
set (EIGEN3_SETUP TRUE)
|
|
|
|
message(DEPRECATION "This file UseEigen.cmake is deprecated, and the function `CGAL_target_use_Eigen` from CGAL_target_use_Eigen.cmake should be used instead.")
|