2020-08-28 07:41:31 -05:00
# cmake_minimum_require must be the first command of the file
2021-11-29 20:24:20 +00:00
cmake_minimum_required ( VERSION 3.10.0 )
2009-08-14 21:58:41 -04:00
2021-09-02 16:05:33 +02:00
# NOTE Remove setting the policy once the minimum required CMake version is
# increased to at least 3.15. Retain enabling the export to package registry.
if ( POLICY CMP0090 )
# The export command does not populate package registry by default
cmake_policy ( SET CMP0090 NEW )
# Unless otherwise specified, always export to package registry to ensure
# backwards compatibility.
if ( NOT DEFINED CMAKE_EXPORT_PACKAGE_REGISTRY )
set ( CMAKE_EXPORT_PACKAGE_REGISTRY ON )
endif ( NOT DEFINED CMAKE_EXPORT_PACKAGE_REGISTRY )
endif ( POLICY CMP0090 )
2020-08-28 07:41:31 -05:00
project ( Eigen3 )
2021-10-24 21:00:11 +02:00
# Remove this block after bumping CMake to v3.21.0
# PROJECT_IS_TOP_LEVEL is defined then by default
if ( CMAKE_VERSION VERSION_LESS 3.21.0 )
if ( CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR )
set ( PROJECT_IS_TOP_LEVEL TRUE )
else ( )
set ( PROJECT_IS_TOP_LEVEL FALSE )
endif ( )
endif ( )
2021-12-01 00:48:34 +00:00
set ( CMAKE_CXX_STANDARD 14 CACHE STRING "Default C++ standard" )
2021-08-25 11:02:42 -07:00
set ( CMAKE_CXX_STANDARD_REQUIRED ON CACHE BOOL "Require C++ standard" )
set ( CMAKE_CXX_EXTENSIONS OFF CACHE BOOL "Allow C++ extensions" )
2010-04-19 11:19:22 -04:00
# guard against in-source builds
2009-11-15 00:11:33 -05:00
if ( ${ CMAKE_SOURCE_DIR } STREQUAL ${ CMAKE_BINARY_DIR } )
2011-02-05 18:57:29 -05:00
message ( FATAL_ERROR "In-source builds not allowed. Please make a new directory (called a build directory) and run CMake from there. You may need to remove CMakeCache.txt. " )
2009-11-15 00:11:33 -05:00
endif ( )
2018-07-17 00:11:20 +02:00
2016-08-05 15:21:14 +02:00
# Alias Eigen_*_DIR to Eigen3_*_DIR:
set ( Eigen_SOURCE_DIR ${ Eigen3_SOURCE_DIR } )
set ( Eigen_BINARY_DIR ${ Eigen3_BINARY_DIR } )
2010-10-25 10:15:22 -04:00
# guard against bad build-type strings
2011-01-19 10:15:36 -05:00
if ( NOT CMAKE_BUILD_TYPE )
set ( CMAKE_BUILD_TYPE "Release" )
endif ( )
2010-10-25 10:15:22 -04:00
2010-04-19 11:19:22 -04:00
#############################################################################
2021-10-24 21:00:11 +02:00
# retrieve version information #
2010-04-19 11:19:22 -04:00
#############################################################################
2009-05-20 00:04:08 +02:00
# automatically parse the version number
2011-01-17 09:59:40 -05:00
file ( READ "${PROJECT_SOURCE_DIR}/Eigen/src/Core/util/Macros.h" _eigen_version_header )
2009-11-19 12:09:04 -05:00
string ( REGEX MATCH "define[ \t]+EIGEN_WORLD_VERSION[ \t]+([0-9]+)" _eigen_world_version_match "${_eigen_version_header}" )
set ( EIGEN_WORLD_VERSION "${CMAKE_MATCH_1}" )
string ( REGEX MATCH "define[ \t]+EIGEN_MAJOR_VERSION[ \t]+([0-9]+)" _eigen_major_version_match "${_eigen_version_header}" )
set ( EIGEN_MAJOR_VERSION "${CMAKE_MATCH_1}" )
string ( REGEX MATCH "define[ \t]+EIGEN_MINOR_VERSION[ \t]+([0-9]+)" _eigen_minor_version_match "${_eigen_version_header}" )
set ( EIGEN_MINOR_VERSION "${CMAKE_MATCH_1}" )
set ( EIGEN_VERSION_NUMBER ${ EIGEN_WORLD_VERSION } . ${ EIGEN_MAJOR_VERSION } . ${ EIGEN_MINOR_VERSION } )
2009-01-04 17:32:20 +00:00
2019-12-04 11:24:06 +01:00
# if we are not in a git clone
if ( IS_DIRECTORY ${ CMAKE_SOURCE_DIR } /.git )
# if the git program is absent or this will leave the EIGEN_GIT_REVNUM string empty,
2018-05-31 21:21:57 +02:00
# but won't stop CMake.
2019-12-04 11:24:06 +01:00
execute_process ( COMMAND git ls-remote --refs -q ${ CMAKE_SOURCE_DIR } HEAD OUTPUT_VARIABLE EIGEN_GIT_OUTPUT )
2018-05-31 21:21:57 +02:00
endif ( )
2009-08-14 21:58:41 -04:00
2019-12-04 11:24:06 +01:00
# extract the git rev number from the git output...
if ( EIGEN_GIT_OUTPUT )
string ( REGEX MATCH "^([0-9;a-f]+).*" EIGEN_GIT_CHANGESET_MATCH "${EIGEN_GIT_OUTPUT}" )
set ( EIGEN_GIT_REVNUM "${CMAKE_MATCH_1}" )
2019-10-31 11:36:27 -05:00
endif ( )
2009-08-14 21:58:41 -04:00
#...and show it next to the version number
2019-12-04 11:24:06 +01:00
if ( EIGEN_GIT_REVNUM )
set ( EIGEN_VERSION "${EIGEN_VERSION_NUMBER} (git rev ${EIGEN_GIT_REVNUM})" )
2019-10-31 11:36:27 -05:00
else ( )
2008-12-02 12:59:10 +00:00
set ( EIGEN_VERSION "${EIGEN_VERSION_NUMBER}" )
2019-10-31 11:36:27 -05:00
endif ( )
2008-05-31 23:21:49 +00:00
2009-05-06 08:15:54 +00:00
include ( CheckCXXCompilerFlag )
2015-11-07 21:29:24 -05:00
include ( GNUInstallDirs )
2020-11-27 13:21:49 +01:00
include ( CMakeDependentOption )
2009-05-06 08:15:54 +00:00
2008-08-23 17:40:52 +00:00
set ( CMAKE_MODULE_PATH ${ PROJECT_SOURCE_DIR } /cmake )
2008-08-23 17:25:54 +00:00
2018-10-19 17:20:51 +02:00
macro ( ei_add_cxx_compiler_flag FLAG )
string ( REGEX REPLACE "-" "" SFLAG1 ${ FLAG } )
string ( REGEX REPLACE "\\+" "p" SFLAG ${ SFLAG1 } )
check_cxx_compiler_flag ( ${ FLAG } COMPILER_SUPPORT_ ${ SFLAG } )
if ( COMPILER_SUPPORT_ ${ SFLAG } )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${FLAG}" )
endif ( )
2019-10-31 11:36:27 -05:00
endmacro ( )
2018-10-19 17:20:51 +02:00
2021-06-23 21:09:53 -07:00
# Determine if we should build shared libraries on this platform.
get_cmake_property ( EIGEN_BUILD_SHARED_LIBS TARGET_SUPPORTS_SHARED_LIBS )
2010-04-19 11:19:22 -04:00
#############################################################################
# find how to link to the standard libraries #
#############################################################################
find_package ( StandardMathLibrary )
2011-12-09 10:50:13 +01:00
set ( EIGEN_TEST_CUSTOM_LINKER_FLAGS "" CACHE STRING "Additional linker flags when linking unit tests." )
set ( EIGEN_TEST_CUSTOM_CXX_FLAGS "" CACHE STRING "Additional compiler flags when compiling unit tests." )
2021-12-13 15:27:33 +00:00
# convert space separated argument into CMake lists for downstream consumption
separate_arguments ( EIGEN_TEST_CUSTOM_CXX_FLAGS NATIVE_COMMAND ${ EIGEN_TEST_CUSTOM_CXX_FLAGS } )
2011-12-09 10:50:13 +01:00
2010-04-19 11:19:22 -04:00
set ( EIGEN_STANDARD_LIBRARIES_TO_LINK_TO "" )
if ( NOT STANDARD_MATH_LIBRARY_FOUND )
message ( FATAL_ERROR
" C a n ' t l i n k t o t h e s t a n d a r d m a t h l i b r a r y . P l e a s e r e p o r t t o t h e E i g e n d e v e l o p e r s , t e l l i n g t h e m a b o u t y o u r p l a t f o r m . " )
else ( )
if ( EIGEN_STANDARD_LIBRARIES_TO_LINK_TO )
set ( EIGEN_STANDARD_LIBRARIES_TO_LINK_TO "${EIGEN_STANDARD_LIBRARIES_TO_LINK_TO} ${STANDARD_MATH_LIBRARY}" )
else ( )
set ( EIGEN_STANDARD_LIBRARIES_TO_LINK_TO "${STANDARD_MATH_LIBRARY}" )
endif ( )
endif ( )
if ( EIGEN_STANDARD_LIBRARIES_TO_LINK_TO )
message ( STATUS "Standard libraries to link to explicitly: ${EIGEN_STANDARD_LIBRARIES_TO_LINK_TO}" )
else ( )
message ( STATUS "Standard libraries to link to explicitly: none" )
endif ( )
2008-12-02 12:59:10 +00:00
option ( EIGEN_BUILD_BTL "Build benchmark suite" OFF )
2016-06-27 16:43:08 +00:00
# Disable pkgconfig only for native Windows builds
if ( NOT WIN32 OR NOT CMAKE_HOST_SYSTEM_NAME MATCHES Windows )
2009-05-19 11:48:50 -05:00
option ( EIGEN_BUILD_PKGCONFIG "Build pkg-config .pc file for Eigen" ON )
2016-06-27 16:43:08 +00:00
endif ( )
2008-07-09 14:04:48 +00:00
2018-07-17 00:11:20 +02:00
set ( CMAKE_INCLUDE_CURRENT_DIR OFF )
2007-05-30 06:57:40 +00:00
2010-12-17 09:42:17 +01:00
option ( EIGEN_SPLIT_LARGE_TESTS "Split large tests into smaller executables" ON )
2010-05-18 08:59:39 -04:00
option ( EIGEN_DEFAULT_TO_ROW_MAJOR "Use row-major as default matrix storage order" OFF )
if ( EIGEN_DEFAULT_TO_ROW_MAJOR )
add_definitions ( "-DEIGEN_DEFAULT_TO_ROW_MAJOR" )
endif ( )
2011-07-12 14:41:00 +02:00
set ( EIGEN_TEST_MAX_SIZE "320" CACHE STRING "Maximal matrix/vector size, default is 320" )
2013-04-12 15:24:41 +02:00
if ( NOT MSVC )
# We assume that other compilers are partly compatible with GNUCC
2015-11-30 17:05:42 +01:00
2016-05-05 13:35:45 +02:00
# clang outputs some warnings for unknown flags that are not caught by check_cxx_compiler_flag
2013-04-12 15:24:41 +02:00
# adding -Werror turns such warnings into errors
check_cxx_compiler_flag ( "-Werror" COMPILER_SUPPORT_WERROR )
if ( COMPILER_SUPPORT_WERROR )
set ( CMAKE_REQUIRED_FLAGS "-Werror" )
2010-02-20 17:39:58 +01:00
endif ( )
2013-04-12 15:24:41 +02:00
ei_add_cxx_compiler_flag ( "-pedantic" )
ei_add_cxx_compiler_flag ( "-Wall" )
ei_add_cxx_compiler_flag ( "-Wextra" )
#ei_add_cxx_compiler_flag("-Weverything") # clang
2018-09-18 04:15:01 -04:00
2013-04-12 15:24:41 +02:00
ei_add_cxx_compiler_flag ( "-Wundef" )
ei_add_cxx_compiler_flag ( "-Wcast-align" )
ei_add_cxx_compiler_flag ( "-Wchar-subscripts" )
ei_add_cxx_compiler_flag ( "-Wnon-virtual-dtor" )
ei_add_cxx_compiler_flag ( "-Wunused-local-typedefs" )
ei_add_cxx_compiler_flag ( "-Wpointer-arith" )
ei_add_cxx_compiler_flag ( "-Wwrite-strings" )
ei_add_cxx_compiler_flag ( "-Wformat-security" )
2014-09-29 10:33:16 +02:00
ei_add_cxx_compiler_flag ( "-Wshorten-64-to-32" )
2016-05-11 19:36:34 +02:00
ei_add_cxx_compiler_flag ( "-Wlogical-op" )
2014-07-17 13:34:26 +02:00
ei_add_cxx_compiler_flag ( "-Wenum-conversion" )
ei_add_cxx_compiler_flag ( "-Wc++11-extensions" )
2016-05-05 13:35:45 +02:00
ei_add_cxx_compiler_flag ( "-Wdouble-promotion" )
# ei_add_cxx_compiler_flag("-Wconversion")
2018-09-18 04:15:01 -04:00
2018-04-21 22:08:26 +02:00
ei_add_cxx_compiler_flag ( "-Wshadow" )
2018-09-18 04:15:01 -04:00
2013-04-12 15:24:41 +02:00
ei_add_cxx_compiler_flag ( "-Wno-psabi" )
ei_add_cxx_compiler_flag ( "-Wno-variadic-macros" )
ei_add_cxx_compiler_flag ( "-Wno-long-long" )
2018-09-18 04:15:01 -04:00
2013-04-12 15:24:41 +02:00
ei_add_cxx_compiler_flag ( "-fno-check-new" )
ei_add_cxx_compiler_flag ( "-fno-common" )
ei_add_cxx_compiler_flag ( "-fstrict-aliasing" )
2013-06-12 13:02:30 +02:00
ei_add_cxx_compiler_flag ( "-wd981" ) # disable ICC's "operands are evaluated in unspecified order" remark
2016-05-05 13:35:45 +02:00
ei_add_cxx_compiler_flag ( "-wd2304" ) # disable ICC's "warning #2304: non-explicit constructor with single argument may cause implicit type conversion" produced by -Wnon-virtual-dtor
2018-09-18 04:15:01 -04:00
2015-04-07 14:03:21 -04:00
if ( ANDROID_NDK )
ei_add_cxx_compiler_flag ( "-pie" )
ei_add_cxx_compiler_flag ( "-fPIE" )
endif ( )
2018-09-18 04:15:01 -04:00
2013-04-12 15:24:41 +02:00
set ( CMAKE_REQUIRED_FLAGS "" )
2010-02-20 17:39:58 +01:00
option ( EIGEN_TEST_SSE2 "Enable/Disable SSE2 in tests/examples" OFF )
if ( EIGEN_TEST_SSE2 )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -msse2" )
2010-12-29 22:02:01 +01:00
message ( STATUS "Enabling SSE2 in tests/examples" )
2010-02-20 17:39:58 +01:00
endif ( )
option ( EIGEN_TEST_SSE3 "Enable/Disable SSE3 in tests/examples" OFF )
if ( EIGEN_TEST_SSE3 )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -msse3" )
2010-12-29 22:02:01 +01:00
message ( STATUS "Enabling SSE3 in tests/examples" )
2010-02-20 17:39:58 +01:00
endif ( )
option ( EIGEN_TEST_SSSE3 "Enable/Disable SSSE3 in tests/examples" OFF )
if ( EIGEN_TEST_SSSE3 )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mssse3" )
2010-12-29 22:02:01 +01:00
message ( STATUS "Enabling SSSE3 in tests/examples" )
2010-02-20 17:39:58 +01:00
endif ( )
option ( EIGEN_TEST_SSE4_1 "Enable/Disable SSE4.1 in tests/examples" OFF )
if ( EIGEN_TEST_SSE4_1 )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -msse4.1" )
2010-12-29 22:02:01 +01:00
message ( STATUS "Enabling SSE4.1 in tests/examples" )
2010-02-20 17:39:58 +01:00
endif ( )
option ( EIGEN_TEST_SSE4_2 "Enable/Disable SSE4.2 in tests/examples" OFF )
if ( EIGEN_TEST_SSE4_2 )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -msse4.2" )
2010-12-29 22:02:01 +01:00
message ( STATUS "Enabling SSE4.2 in tests/examples" )
2010-02-20 17:39:58 +01:00
endif ( )
2014-03-24 09:52:45 -07:00
option ( EIGEN_TEST_AVX "Enable/Disable AVX in tests/examples" OFF )
2014-01-29 11:43:05 -08:00
if ( EIGEN_TEST_AVX )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mavx" )
message ( STATUS "Enabling AVX in tests/examples" )
endif ( )
2014-03-24 09:52:45 -07:00
option ( EIGEN_TEST_FMA "Enable/Disable FMA in tests/examples" OFF )
2015-04-07 14:03:21 -04:00
if ( EIGEN_TEST_FMA AND NOT EIGEN_TEST_NEON )
2014-03-24 09:52:45 -07:00
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mfma" )
message ( STATUS "Enabling FMA in tests/examples" )
2020-07-14 01:34:03 +00:00
endif ( )
option ( EIGEN_TEST_AVX2 "Enable/Disable AVX2 in tests/examples" OFF )
if ( EIGEN_TEST_AVX2 )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mavx2 -mfma" )
message ( STATUS "Enabling AVX2 in tests/examples" )
2014-03-24 09:52:45 -07:00
endif ( )
2016-01-05 10:02:49 -08:00
option ( EIGEN_TEST_AVX512 "Enable/Disable AVX512 in tests/examples" OFF )
if ( EIGEN_TEST_AVX512 )
2020-06-20 19:16:24 +00:00
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mavx512f -mfma" )
2016-01-05 10:02:49 -08:00
message ( STATUS "Enabling AVX512 in tests/examples" )
2016-04-29 13:42:22 -07:00
endif ( )
2020-06-20 19:16:24 +00:00
option ( EIGEN_TEST_AVX512DQ "Enable/Disable AVX512DQ in tests/examples" OFF )
if ( EIGEN_TEST_AVX512DQ )
2021-09-22 14:06:06 -07:00
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mavx512dq -mfma" )
2020-06-20 19:16:24 +00:00
message ( STATUS "Enabling AVX512DQ in tests/examples" )
endif ( )
2016-04-21 10:30:29 -07:00
option ( EIGEN_TEST_F16C "Enable/Disable F16C in tests/examples" OFF )
if ( EIGEN_TEST_F16C )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mf16c" )
message ( STATUS "Enabling F16C in tests/examples" )
2016-01-05 10:02:49 -08:00
endif ( )
2010-03-03 13:16:21 -05:00
option ( EIGEN_TEST_ALTIVEC "Enable/Disable AltiVec in tests/examples" OFF )
2010-02-20 17:39:58 +01:00
if ( EIGEN_TEST_ALTIVEC )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -maltivec -mabi=altivec" )
2010-12-29 22:02:01 +01:00
message ( STATUS "Enabling AltiVec in tests/examples" )
2010-02-20 17:39:58 +01:00
endif ( )
2010-03-03 11:25:41 -06:00
2014-08-29 20:03:49 +00:00
option ( EIGEN_TEST_VSX "Enable/Disable VSX in tests/examples" OFF )
if ( EIGEN_TEST_VSX )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -m64 -mvsx" )
message ( STATUS "Enabling VSX in tests/examples" )
endif ( )
2018-07-06 16:04:30 -07:00
option ( EIGEN_TEST_MSA "Enable/Disable MSA in tests/examples" OFF )
if ( EIGEN_TEST_MSA )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mmsa" )
message ( STATUS "Enabling MSA in tests/examples" )
endif ( )
2010-03-03 13:16:21 -05:00
option ( EIGEN_TEST_NEON "Enable/Disable Neon in tests/examples" OFF )
2010-03-03 11:25:41 -06:00
if ( EIGEN_TEST_NEON )
2015-04-07 14:03:21 -04:00
if ( EIGEN_TEST_FMA )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mfpu=neon-vfpv4" )
else ( )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mfpu=neon" )
endif ( )
2016-03-17 21:24:24 -07:00
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mfloat-abi=hard" )
2010-12-29 22:02:01 +01:00
message ( STATUS "Enabling NEON in tests/examples" )
2010-03-03 11:25:41 -06:00
endif ( )
2014-10-21 18:10:01 +00:00
option ( EIGEN_TEST_NEON64 "Enable/Disable Neon in tests/examples" OFF )
if ( EIGEN_TEST_NEON64 )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}" )
message ( STATUS "Enabling NEON in tests/examples" )
endif ( )
2017-10-12 15:38:34 -04:00
option ( EIGEN_TEST_Z13 "Enable/Disable S390X(zEC13) ZVECTOR in tests/examples" OFF )
if ( EIGEN_TEST_Z13 )
2016-03-21 13:46:47 -04:00
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=z13 -mzvector" )
message ( STATUS "Enabling S390X(zEC13) ZVECTOR in tests/examples" )
endif ( )
2014-10-21 18:10:01 +00:00
2017-10-12 15:38:34 -04:00
option ( EIGEN_TEST_Z14 "Enable/Disable S390X(zEC14) ZVECTOR in tests/examples" OFF )
if ( EIGEN_TEST_Z14 )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=z14 -mzvector" )
message ( STATUS "Enabling S390X(zEC13) ZVECTOR in tests/examples" )
endif ( )
2010-03-05 10:22:27 +01:00
check_cxx_compiler_flag ( "-fopenmp" COMPILER_SUPPORT_OPENMP )
if ( COMPILER_SUPPORT_OPENMP )
option ( EIGEN_TEST_OPENMP "Enable/Disable OpenMP in tests/examples" OFF )
if ( EIGEN_TEST_OPENMP )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fopenmp" )
2010-12-29 22:02:01 +01:00
message ( STATUS "Enabling OpenMP in tests/examples" )
2010-03-05 10:22:27 +01:00
endif ( )
endif ( )
2019-10-31 11:36:27 -05:00
else ( )
2007-05-30 06:57:40 +00:00
2010-02-20 17:39:58 +01:00
# C4127 - conditional expression is constant
2010-05-19 19:35:42 +02:00
# C4714 - marked as __forceinline not inlined (I failed to deactivate it selectively)
# We can disable this warning in the unit tests since it is clear that it occurs
# because we are oftentimes returning objects that have a destructor or may
# throw exceptions - in particular in the unit tests we are throwing extra many
# exceptions to cover indexing errors.
2018-09-18 04:15:01 -04:00
# C4505 - unreferenced local function has been removed (impossible to deactivate selectively)
2010-05-19 19:35:42 +02:00
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /EHsc /wd4127 /wd4505 /wd4714" )
2010-07-01 07:28:16 +02:00
# replace all /Wx by /W4
2010-02-21 15:23:51 +01:00
string ( REGEX REPLACE "/W[0-9]" "/W4" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}" )
2010-07-01 07:28:16 +02:00
check_cxx_compiler_flag ( "/openmp" COMPILER_SUPPORT_OPENMP )
if ( COMPILER_SUPPORT_OPENMP )
option ( EIGEN_TEST_OPENMP "Enable/Disable OpenMP in tests/examples" OFF )
if ( EIGEN_TEST_OPENMP )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /openmp" )
2010-12-29 22:02:01 +01:00
message ( STATUS "Enabling OpenMP in tests/examples" )
2010-07-01 07:28:16 +02:00
endif ( )
endif ( )
2008-12-18 09:07:36 +00:00
option ( EIGEN_TEST_SSE2 "Enable/Disable SSE2 in tests/examples" OFF )
if ( EIGEN_TEST_SSE2 )
2009-08-28 00:05:44 +02:00
if ( NOT CMAKE_CL_64 )
2009-09-25 13:08:39 +02:00
# arch is not supported on 64 bit systems, SSE is enabled automatically.
2009-08-28 00:05:44 +02:00
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /arch:SSE2" )
2019-10-31 11:36:27 -05:00
endif ( )
2010-12-29 22:02:01 +01:00
message ( STATUS "Enabling SSE2 in tests/examples" )
2019-10-31 11:36:27 -05:00
endif ( )
2018-12-07 15:14:50 +01:00
option ( EIGEN_TEST_AVX "Enable/Disable AVX in tests/examples" OFF )
if ( EIGEN_TEST_AVX )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /arch:AVX" )
message ( STATUS "Enabling AVX in tests/examples" )
endif ( )
option ( EIGEN_TEST_FMA "Enable/Disable FMA/AVX2 in tests/examples" OFF )
2022-03-18 16:04:53 +00:00
option ( EIGEN_TEST_AVX2 "Enable/Disable FMA/AVX2 in tests/examples" OFF )
if ( ( EIGEN_TEST_FMA AND NOT EIGEN_TEST_NEON ) OR EIGEN_TEST_AVX2 )
2018-12-07 15:14:50 +01:00
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /arch:AVX2" )
message ( STATUS "Enabling FMA/AVX2 in tests/examples" )
endif ( )
2022-03-18 16:04:53 +00:00
option ( EIGEN_TEST_AVX512 "Enable/Disable AVX512 in tests/examples" OFF )
option ( EIGEN_TEST_AVX512DQ "Enable/Disable AVX512DQ in tests/examples" OFF )
if ( EIGEN_TEST_AVX512 OR EIGEN_TEST_AVX512DQ )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /arch:AVX512" )
message ( STATUS "Enabling AVX512 in tests/examples" )
endif ( )
2019-10-31 11:36:27 -05:00
endif ( )
2008-12-18 09:07:36 +00:00
2009-01-14 14:24:10 +00:00
option ( EIGEN_TEST_NO_EXPLICIT_VECTORIZATION "Disable explicit vectorization in tests/examples" OFF )
2010-10-13 09:04:59 -04:00
option ( EIGEN_TEST_X87 "Force using X87 instructions. Implies no vectorization." OFF )
2011-02-27 17:27:23 -05:00
option ( EIGEN_TEST_32BIT "Force generating 32bit code." OFF )
2010-10-13 09:04:59 -04:00
if ( EIGEN_TEST_X87 )
set ( EIGEN_TEST_NO_EXPLICIT_VECTORIZATION ON )
if ( CMAKE_COMPILER_IS_GNUCXX )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mfpmath=387" )
2010-12-29 22:02:01 +01:00
message ( STATUS "Forcing use of x87 instructions in tests/examples" )
2010-10-13 09:04:59 -04:00
else ( )
2010-12-29 22:02:01 +01:00
message ( STATUS "EIGEN_TEST_X87 ignored on your compiler" )
2010-10-13 09:04:59 -04:00
endif ( )
endif ( )
2011-02-27 17:27:23 -05:00
if ( EIGEN_TEST_32BIT )
if ( CMAKE_COMPILER_IS_GNUCXX )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -m32" )
message ( STATUS "Forcing generation of 32-bit code in tests/examples" )
else ( )
message ( STATUS "EIGEN_TEST_32BIT ignored on your compiler" )
endif ( )
endif ( )
2009-01-14 14:24:10 +00:00
if ( EIGEN_TEST_NO_EXPLICIT_VECTORIZATION )
2009-01-15 08:26:40 +00:00
add_definitions ( -DEIGEN_DONT_VECTORIZE=1 )
2010-12-29 22:02:01 +01:00
message ( STATUS "Disabling vectorization in tests/examples" )
2010-03-06 02:17:37 -05:00
endif ( )
option ( EIGEN_TEST_NO_EXPLICIT_ALIGNMENT "Disable explicit alignment (hence vectorization) in tests/examples" OFF )
if ( EIGEN_TEST_NO_EXPLICIT_ALIGNMENT )
add_definitions ( -DEIGEN_DONT_ALIGN=1 )
2010-12-29 22:02:01 +01:00
message ( STATUS "Disabling alignment in tests/examples" )
2010-03-06 02:17:37 -05:00
endif ( )
2009-01-14 14:24:10 +00:00
2014-07-22 13:16:44 +02:00
option ( EIGEN_TEST_NO_EXCEPTIONS "Disables C++ exceptions" OFF )
if ( EIGEN_TEST_NO_EXCEPTIONS )
ei_add_cxx_compiler_flag ( "-fno-exceptions" )
message ( STATUS "Disabling exceptions in tests/examples" )
endif ( )
2021-09-24 20:15:55 -07:00
set ( EIGEN_CUDA_CXX_FLAGS "" CACHE STRING "Additional flags to pass to the cuda compiler." )
2021-09-24 14:43:59 -07:00
set ( EIGEN_CUDA_COMPUTE_ARCH 30 CACHE STRING "The CUDA compute architecture(s) to target when compiling CUDA code" )
2016-02-25 09:06:18 -08:00
2018-07-17 00:11:20 +02:00
include_directories ( ${ CMAKE_CURRENT_SOURCE_DIR } )
2007-05-30 06:57:40 +00:00
2015-12-10 15:47:06 +01:00
# Backward compatibility support for EIGEN_INCLUDE_INSTALL_DIR
if ( EIGEN_INCLUDE_INSTALL_DIR )
message ( WARNING "EIGEN_INCLUDE_INSTALL_DIR is deprecated. Use INCLUDE_INSTALL_DIR instead." )
endif ( )
if ( EIGEN_INCLUDE_INSTALL_DIR AND NOT INCLUDE_INSTALL_DIR )
set ( INCLUDE_INSTALL_DIR ${ EIGEN_INCLUDE_INSTALL_DIR }
2021-07-02 13:03:30 -07:00
C A C H E P A T H " T h e d i r e c t o r y r e l a t i v e t o C M A K E _ I N S T A L L _ P R E F I X w h e r e E i g e n h e a d e r f i l e s a r e i n s t a l l e d " )
2015-12-10 15:47:06 +01:00
else ( )
set ( INCLUDE_INSTALL_DIR
" $ { C M A K E _ I N S T A L L _ I N C L U D E D I R } / e i g e n 3 "
2021-07-02 13:03:30 -07:00
C A C H E P A T H " T h e d i r e c t o r y r e l a t i v e t o C M A K E _ I N S T A L L _ P R E F I X w h e r e E i g e n h e a d e r f i l e s a r e i n s t a l l e d "
2015-12-10 15:47:06 +01:00
)
endif ( )
2015-11-07 21:29:24 -05:00
set ( CMAKEPACKAGE_INSTALL_DIR
2016-11-30 15:46:46 +01:00
" $ { C M A K E _ I N S T A L L _ D A T A D I R } / e i g e n 3 / c m a k e "
2021-07-02 13:03:30 -07:00
C A C H E P A T H " T h e d i r e c t o r y r e l a t i v e t o C M A K E _ I N S T A L L _ P R E F I X w h e r e E i g e n 3 C o n f i g . c m a k e i s i n s t a l l e d "
2015-11-07 21:29:24 -05:00
)
set ( PKGCONFIG_INSTALL_DIR
" $ { C M A K E _ I N S T A L L _ D A T A D I R } / p k g c o n f i g "
2021-07-02 13:03:30 -07:00
C A C H E P A T H " T h e d i r e c t o r y r e l a t i v e t o C M A K E _ I N S T A L L _ P R E F I X w h e r e e i g e n 3 . p c i s i n s t a l l e d "
2015-11-07 21:29:24 -05:00
)
2010-04-08 13:28:21 +02:00
2020-09-28 16:39:48 +00:00
foreach ( var INCLUDE_INSTALL_DIR CMAKEPACKAGE_INSTALL_DIR PKGCONFIG_INSTALL_DIR )
2021-07-02 13:03:30 -07:00
# If an absolute path is specified, make it relative to "{CMAKE_INSTALL_PREFIX}".
2020-09-28 16:39:48 +00:00
if ( IS_ABSOLUTE "${${var}}" )
2021-07-02 13:03:30 -07:00
file ( RELATIVE_PATH "${var}" "${CMAKE_INSTALL_PREFIX}" "${${var}}" )
2020-09-28 16:39:48 +00:00
endif ( )
endforeach ( )
2009-02-05 09:37:53 +00:00
2009-11-19 12:41:28 -05:00
install ( FILES
s i g n a t u r e _ o f _ e i g e n 3 _ m a t r i x _ l i b r a r y
D E S T I N A T I O N $ { I N C L U D E _ I N S T A L L _ D I R } C O M P O N E N T D e v e l
)
2009-05-19 11:48:50 -05:00
if ( EIGEN_BUILD_PKGCONFIG )
2015-11-07 21:29:24 -05:00
configure_file ( eigen3.pc.in eigen3.pc @ONLY )
2009-11-19 12:09:04 -05:00
install ( FILES ${ CMAKE_CURRENT_BINARY_DIR } /eigen3.pc
2015-11-07 21:29:24 -05:00
D E S T I N A T I O N $ { P K G C O N F I G _ I N S T A L L _ D I R }
2009-05-19 11:48:50 -05:00
)
2016-06-27 16:43:08 +00:00
endif ( )
2009-05-19 11:48:50 -05:00
2019-11-17 15:14:25 -06:00
install ( DIRECTORY Eigen DESTINATION ${ INCLUDE_INSTALL_DIR } COMPONENT Devel )
2008-07-09 14:04:48 +00:00
2020-11-18 10:08:23 +11:00
option ( EIGEN_BUILD_DOC "Enable creation of Eigen documentation" ON )
if ( EIGEN_BUILD_DOC )
add_subdirectory ( doc EXCLUDE_FROM_ALL )
endif ( )
2009-02-27 16:19:13 +00:00
2021-10-24 21:00:11 +02:00
cmake_dependent_option ( BUILD_TESTING "Enable creation of tests." ON "PROJECT_IS_TOP_LEVEL" OFF )
option ( EIGEN_BUILD_TESTING "Enable creation of Eigen tests." ${ BUILD_TESTING } )
if ( EIGEN_BUILD_TESTING )
2017-01-02 09:09:21 +01:00
include ( EigenConfigureTesting )
2013-03-20 08:40:13 +01:00
2017-01-02 09:09:21 +01:00
if ( EIGEN_LEAVE_TEST_IN_ALL_TARGET )
add_subdirectory ( test ) # can't do EXCLUDE_FROM_ALL here, breaks CTest
else ( )
add_subdirectory ( test EXCLUDE_FROM_ALL )
endif ( )
2019-01-11 11:07:56 +01:00
add_subdirectory ( failtest )
2009-11-12 12:07:18 -05:00
endif ( )
2008-12-02 12:59:10 +00:00
2022-03-05 05:49:45 +00:00
include ( CMakeDetermineFortranCompiler )
option ( EIGEN_BUILD_BLAS "Toggles the building of the Eigen Blas library" ${ CMAKE_Fortran_COMPILER } )
option ( EIGEN_BUILD_LAPACK "Toggles the building of the included Eigen LAPACK library" ${ CMAKE_Fortran_COMPILER } )
2011-11-05 13:26:53 +01:00
if ( EIGEN_LEAVE_TEST_IN_ALL_TARGET )
add_subdirectory ( blas )
add_subdirectory ( lapack )
else ( )
add_subdirectory ( blas EXCLUDE_FROM_ALL )
add_subdirectory ( lapack EXCLUDE_FROM_ALL )
2011-09-21 10:27:38 +02:00
endif ( )
2009-09-25 13:08:39 +02:00
2016-09-19 12:44:13 +01:00
# add SYCL
option ( EIGEN_TEST_SYCL "Add Sycl support." OFF )
2017-05-05 19:26:27 +01:00
option ( EIGEN_SYCL_TRISYCL "Use the triSYCL Sycl implementation (ComputeCPP by default)." OFF )
2016-09-19 12:44:13 +01:00
if ( EIGEN_TEST_SYCL )
set ( CMAKE_MODULE_PATH "${CMAKE_ROOT}/Modules" "cmake/Modules/" "${CMAKE_MODULE_PATH}" )
2020-11-02 11:13:37 +00:00
find_package ( Threads REQUIRED )
2017-05-05 19:26:27 +01:00
if ( EIGEN_SYCL_TRISYCL )
message ( STATUS "Using triSYCL" )
include ( FindTriSYCL )
2019-10-31 11:36:27 -05:00
else ( )
2017-05-05 19:26:27 +01:00
message ( STATUS "Using ComputeCPP SYCL" )
include ( FindComputeCpp )
2019-11-28 10:08:54 +00:00
set ( COMPUTECPP_DRIVER_DEFAULT_VALUE OFF )
if ( NOT MSVC )
set ( COMPUTECPP_DRIVER_DEFAULT_VALUE ON )
endif ( )
option ( COMPUTECPP_USE_COMPILER_DRIVER
" U s e C o m p u t e C p p d r i v e r i n s t e a d o f a 2 s t e p s c o m p i l a t i o n "
$ { C O M P U T E C P P _ D R I V E R _ D E F A U L T _ V A L U E }
)
endif ( EIGEN_SYCL_TRISYCL )
option ( EIGEN_DONT_VECTORIZE_SYCL "Don't use vectorisation in the SYCL tests." OFF )
if ( EIGEN_DONT_VECTORIZE_SYCL )
message ( STATUS "Disabling SYCL vectorization in tests/examples" )
# When disabling SYCL vectorization, also disable Eigen default vectorization
add_definitions ( -DEIGEN_DONT_VECTORIZE=1 )
add_definitions ( -DEIGEN_DONT_VECTORIZE_SYCL=1 )
2019-10-31 11:36:27 -05:00
endif ( )
endif ( )
2016-09-19 12:44:13 +01:00
2011-02-23 09:25:32 +01:00
add_subdirectory ( unsupported )
add_subdirectory ( demos EXCLUDE_FROM_ALL )
2009-11-25 21:26:37 -05:00
# must be after test and unsupported, for configuring buildtests.in
2009-11-12 12:07:18 -05:00
add_subdirectory ( scripts EXCLUDE_FROM_ALL )
2009-09-27 17:48:53 -04:00
# TODO: consider also replacing EIGEN_BUILD_BTL by a custom target "make btl"?
2008-12-02 12:59:10 +00:00
if ( EIGEN_BUILD_BTL )
2009-09-27 17:48:53 -04:00
add_subdirectory ( bench/btl EXCLUDE_FROM_ALL )
2019-10-31 11:36:27 -05:00
endif ( )
2009-02-27 16:19:13 +00:00
2021-11-09 23:49:01 +01:00
find_package ( CLANG_FORMAT 9 EXACT )
if ( CLANG_FORMAT_FOUND )
set ( FORMAT_SOURCES )
list ( APPEND FORMAT_SUBDIRS blas bench demos "doc" Eigen include lapack scripts share unsupported test failtest )
foreach ( DIR ${ FORMAT_SUBDIRS } )
set ( ABS_DIR ${ CMAKE_CURRENT_SOURCE_DIR } / ${ DIR } )
file ( GLOB_RECURSE ${ DIR } _SOURCES ${ ABS_DIR } /*.cc ${ ABS_DIR } /*.h ${ ABS_DIR } /*.cpp ${ ABS_DIR } /*.hpp ${ ABS_DIR } /*.c )
list ( APPEND FORMAT_SOURCES ${ ${DIR } _SOURCES} )
endforeach ( )
file ( GLOB FORMAT_SOURCES_WITHOUTENDING LIST_DIRECTORIES false ${ CMAKE_CURRENT_SOURCE_DIR } /Eigen/* ${ CMAKE_CURRENT_SOURCE_DIR } /Eigen/CXX11/* ${ CMAKE_CURRENT_SOURCE_DIR } /unsupported/Eigen/* ${ CMAKE_CURRENT_SOURCE_DIR } /unsupported/Eigen/CXX11/* )
list ( FILTER FORMAT_SOURCES_WITHOUTENDING EXCLUDE REGEX ".*.txt$" )
list ( APPEND FORMAT_SOURCES ${ FORMAT_SOURCES_WITHOUTENDING } )
add_custom_target ( format
C O M M A N D $ { C L A N G _ F O R M A T _ E X E C U T A B L E } - i - s t y l e = f i l e $ { F O R M A T _ S O U R C E S }
D E P E N D S $ { F O R M A T _ S O U R C E S } )
endif ( )
2012-06-07 18:31:09 +02:00
if ( NOT WIN32 )
add_subdirectory ( bench/spbench EXCLUDE_FROM_ALL )
2019-10-31 11:36:27 -05:00
endif ( )
2012-03-29 14:32:54 +02:00
2013-03-20 08:40:13 +01:00
configure_file ( scripts/cdashtesting.cmake.in cdashtesting.cmake @ONLY )
2021-10-24 21:00:11 +02:00
if ( EIGEN_BUILD_TESTING )
2017-01-02 09:09:21 +01:00
ei_testing_print_summary ( )
endif ( )
2009-10-19 15:56:03 -04:00
2010-12-29 22:02:01 +01:00
message ( STATUS "" )
message ( STATUS "Configured Eigen ${EIGEN_VERSION_NUMBER}" )
message ( STATUS "" )
2009-10-19 15:56:03 -04:00
2021-10-24 21:00:11 +02:00
if ( PROJECT_IS_TOP_LEVEL )
string ( TOLOWER "${CMAKE_GENERATOR}" cmake_generator_tolower )
if ( cmake_generator_tolower MATCHES "makefile" )
message ( STATUS "Available targets (use: make TARGET):" )
else ( )
message ( STATUS "Available targets (use: cmake --build . --target TARGET):" )
endif ( )
message ( STATUS "---------+--------------------------------------------------------------" )
message ( STATUS "Target | Description" )
message ( STATUS "---------+--------------------------------------------------------------" )
message ( STATUS "install | Install Eigen. Headers will be installed to:" )
message ( STATUS " | <CMAKE_INSTALL_PREFIX>/<INCLUDE_INSTALL_DIR>" )
message ( STATUS " | Using the following values:" )
message ( STATUS " | CMAKE_INSTALL_PREFIX: ${CMAKE_INSTALL_PREFIX}" )
message ( STATUS " | INCLUDE_INSTALL_DIR: ${INCLUDE_INSTALL_DIR}" )
message ( STATUS " | Change the install location of Eigen headers using:" )
message ( STATUS " | cmake . -DCMAKE_INSTALL_PREFIX=yourprefix" )
message ( STATUS " | Or:" )
message ( STATUS " | cmake . -DINCLUDE_INSTALL_DIR=yourdir" )
message ( STATUS "doc | Generate the API documentation, requires Doxygen & LaTeX" )
if ( EIGEN_BUILD_TESTING )
message ( STATUS "check | Build and run the unit-tests. Read this page:" )
message ( STATUS " | http://eigen.tuxfamily.org/index.php?title=Tests" )
endif ( )
2021-11-09 23:49:01 +01:00
if ( CLANG_FORMAT_FOUND )
message ( STATUS "format | Formats the source code according to .clang-format file" )
endif ( )
2021-10-24 21:00:11 +02:00
message ( STATUS "blas | Build BLAS library (not the same thing as Eigen)" )
message ( STATUS "uninstall| Remove files installed by the install target" )
message ( STATUS "---------+--------------------------------------------------------------" )
message ( STATUS "" )
2020-06-16 21:04:33 +00:00
endif ( )
2013-10-09 10:25:50 +02:00
set ( EIGEN_VERSION_STRING ${ EIGEN_VERSION_NUMBER } )
set ( EIGEN_VERSION_MAJOR ${ EIGEN_WORLD_VERSION } )
set ( EIGEN_VERSION_MINOR ${ EIGEN_MAJOR_VERSION } )
set ( EIGEN_VERSION_PATCH ${ EIGEN_MINOR_VERSION } )
2020-12-14 09:57:44 +00:00
include ( CMakePackageConfigHelpers )
# Imported target support
add_library ( eigen INTERFACE )
add_library ( Eigen3::Eigen ALIAS eigen )
target_include_directories ( eigen INTERFACE
$ < B U I L D _ I N T E R F A C E : $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } >
$ < I N S T A L L _ I N T E R F A C E : $ { I N C L U D E _ I N S T A L L _ D I R } >
)
# Export as title case Eigen
set_target_properties ( eigen PROPERTIES EXPORT_NAME Eigen )
install ( TARGETS eigen EXPORT Eigen3Targets )
2022-03-05 05:49:45 +00:00
option ( EIGEN_BUILD_CMAKE_PACKAGE "Enables the creation of EigenConfig.cmake and related files" ON )
if ( EIGEN_BUILD_CMAKE_PACKAGE )
2020-12-14 09:57:44 +00:00
configure_package_config_file (
$ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / c m a k e / E i g e n 3 C o n f i g . c m a k e . i n
$ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R } / E i g e n 3 C o n f i g . c m a k e
I N S T A L L _ D E S T I N A T I O N $ { C M A K E P A C K A G E _ I N S T A L L _ D I R }
2021-04-27 13:27:41 +02:00
N O _ S E T _ A N D _ C H E C K _ M A C R O # Eigen does not provide legacy style defines
2020-12-14 09:57:44 +00:00
N O _ C H E C K _ R E Q U I R E D _ C O M P O N E N T S _ M A C R O # Eigen does not provide components
)
2021-09-02 15:49:53 +02:00
# NOTE Remove the first code path once the minimum required CMake version is
# bumped to 3.14 or above.
if ( CMAKE_VERSION VERSION_LESS 3.14 )
# Remove CMAKE_SIZEOF_VOID_P from Eigen3ConfigVersion.cmake since Eigen does
# not depend on architecture specific settings or libraries. More
# specifically, an Eigen3Config.cmake generated from a 64 bit target can be
# used for 32 bit targets as well (and vice versa).
set ( _Eigen3_CMAKE_SIZEOF_VOID_P ${ CMAKE_SIZEOF_VOID_P } )
unset ( CMAKE_SIZEOF_VOID_P )
write_basic_package_version_file ( Eigen3ConfigVersion.cmake
V E R S I O N $ { E I G E N _ V E R S I O N _ N U M B E R }
C O M P A T I B I L I T Y S a m e M a j o r V e r s i o n )
set ( CMAKE_SIZEOF_VOID_P ${ _Eigen3_CMAKE_SIZEOF_VOID_P } )
else ( CMAKE_VERSION VERSION_LESS 3.14 )
write_basic_package_version_file ( Eigen3ConfigVersion.cmake
V E R S I O N $ { E I G E N _ V E R S I O N _ N U M B E R }
C O M P A T I B I L I T Y S a m e M a j o r V e r s i o n
A R C H _ I N D E P E N D E N T )
endif ( CMAKE_VERSION VERSION_LESS 3.14 )
2020-12-14 09:57:44 +00:00
# The Eigen target will be located in the Eigen3 namespace. Other CMake
# targets can refer to it using Eigen3::Eigen.
export ( TARGETS eigen NAMESPACE Eigen3:: FILE Eigen3Targets.cmake )
# Export Eigen3 package to CMake registry such that it can be easily found by
# CMake even if it has not been installed to a standard directory.
export ( PACKAGE Eigen3 )
install ( EXPORT Eigen3Targets NAMESPACE Eigen3:: DESTINATION ${ CMAKEPACKAGE_INSTALL_DIR } )
2014-12-04 02:57:03 -05:00
2021-04-27 13:27:41 +02:00
install ( FILES ${ CMAKE_CURRENT_BINARY_DIR } /Eigen3Config.cmake
$ { C M A K E _ C U R R E N T _ B I N A R Y _ D I R } / E i g e n 3 C o n f i g V e r s i o n . c m a k e
D E S T I N A T I O N $ { C M A K E P A C K A G E _ I N S T A L L _ D I R } )
2017-01-24 09:16:40 +01:00
2014-12-04 02:57:03 -05:00
# Add uninstall target
2022-05-05 17:43:08 +00:00
if ( NOT TARGET uninstall )
add_custom_target ( uninstall
C O M M A N D $ { C M A K E _ C O M M A N D } - P $ { C M A K E _ C U R R E N T _ S O U R C E _ D I R } / c m a k e / E i g e n U n i n s t a l l . c m a k e )
endif ( )
2022-03-05 05:49:45 +00:00
endif ( )
2020-08-19 18:27:45 +00:00
if ( EIGEN_SPLIT_TESTSUITE )
ei_split_testsuite ( "${EIGEN_SPLIT_TESTSUITE}" )
2020-08-28 07:41:31 -05:00
endif ( )