2008-12-02 20:59:10 +08:00
project ( Eigen )
2008-08-27 14:43:42 +08:00
2014-12-15 19:45:29 +08:00
cmake_minimum_required ( VERSION 2.8.4 )
2009-08-15 09:58:41 +08:00
2010-04-19 23:19:22 +08:00
# guard against in-source builds
2009-11-15 13:11:33 +08:00
if ( ${ CMAKE_SOURCE_DIR } STREQUAL ${ CMAKE_BINARY_DIR } )
2011-02-06 07:57:29 +08: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 13:11:33 +08:00
endif ( )
2010-10-25 22:15:22 +08:00
# guard against bad build-type strings
2011-01-19 23:15:36 +08:00
if ( NOT CMAKE_BUILD_TYPE )
set ( CMAKE_BUILD_TYPE "Release" )
endif ( )
2010-10-25 22:15:22 +08:00
string ( TOLOWER "${CMAKE_BUILD_TYPE}" cmake_build_type_tolower )
if ( NOT cmake_build_type_tolower STREQUAL "debug"
A N D N O T c m a k e _ b u i l d _ t y p e _ t o l o w e r S T R E Q U A L " r e l e a s e "
2011-01-19 23:15:36 +08:00
A N D N O T c m a k e _ b u i l d _ t y p e _ t o l o w e r S T R E Q U A L " r e l w i t h d e b i n f o " )
message ( FATAL_ERROR "Unknown build type \" ${ CMAKE_BUILD_TYPE } \". Allowed values are Debug, Release, RelWithDebInfo ( case-insensitive ) . " )
2010-10-25 22:15:22 +08:00
endif ( )
2010-04-19 23:19:22 +08:00
#############################################################################
# retrieve version infomation #
#############################################################################
2009-05-20 06:04:08 +08:00
# automatically parse the version number
2011-01-17 22:59:40 +08:00
file ( READ "${PROJECT_SOURCE_DIR}/Eigen/src/Core/util/Macros.h" _eigen_version_header )
2009-11-20 01:09:04 +08: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-05 01:32:20 +08:00
2009-08-15 09:58:41 +08:00
# if the mercurial program is absent, this will leave the EIGEN_HG_CHANGESET string empty,
2009-05-20 06:04:08 +08:00
# but won't stop CMake.
execute_process ( COMMAND hg tip -R ${ CMAKE_SOURCE_DIR } OUTPUT_VARIABLE EIGEN_HGTIP_OUTPUT )
2009-08-15 09:58:41 +08:00
execute_process ( COMMAND hg branch -R ${ CMAKE_SOURCE_DIR } OUTPUT_VARIABLE EIGEN_BRANCH_OUTPUT )
# if this is the default (aka development) branch, extract the mercurial changeset number from the hg tip output...
if ( EIGEN_BRANCH_OUTPUT MATCHES "default" )
string ( REGEX MATCH "^changeset: *[0-9]*:([0-9;a-f]+).*" EIGEN_HG_CHANGESET_MATCH "${EIGEN_HGTIP_OUTPUT}" )
set ( EIGEN_HG_CHANGESET "${CMAKE_MATCH_1}" )
endif ( EIGEN_BRANCH_OUTPUT MATCHES "default" )
#...and show it next to the version number
if ( EIGEN_HG_CHANGESET )
set ( EIGEN_VERSION "${EIGEN_VERSION_NUMBER} (mercurial changeset ${EIGEN_HG_CHANGESET})" )
else ( EIGEN_HG_CHANGESET )
2008-12-02 20:59:10 +08:00
set ( EIGEN_VERSION "${EIGEN_VERSION_NUMBER}" )
2009-08-15 09:58:41 +08:00
endif ( EIGEN_HG_CHANGESET )
2008-06-01 07:21:49 +08:00
2010-04-19 23:19:22 +08:00
2009-05-06 16:15:54 +08:00
include ( CheckCXXCompilerFlag )
2008-08-24 01:40:52 +08:00
set ( CMAKE_MODULE_PATH ${ PROJECT_SOURCE_DIR } /cmake )
2008-08-24 01:25:54 +08:00
2010-04-19 23:19:22 +08:00
#############################################################################
# find how to link to the standard libraries #
#############################################################################
find_package ( StandardMathLibrary )
2011-12-09 17:50:13 +08: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." )
2010-04-19 23:19:22 +08: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 20:59:10 +08:00
option ( EIGEN_BUILD_BTL "Build benchmark suite" OFF )
2009-05-20 00:48:50 +08:00
if ( NOT WIN32 )
option ( EIGEN_BUILD_PKGCONFIG "Build pkg-config .pc file for Eigen" ON )
endif ( NOT WIN32 )
2008-07-09 22:04:48 +08:00
2008-12-02 20:59:10 +08:00
set ( CMAKE_INCLUDE_CURRENT_DIR ON )
2007-05-30 14:57:40 +08:00
2010-12-17 16:42:17 +08:00
option ( EIGEN_SPLIT_LARGE_TESTS "Split large tests into smaller executables" ON )
2010-05-18 20:59:39 +08: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 20:41:00 +08:00
set ( EIGEN_TEST_MAX_SIZE "320" CACHE STRING "Maximal matrix/vector size, default is 320" )
2013-04-12 21:24:41 +08:00
macro ( ei_add_cxx_compiler_flag FLAG )
2014-07-17 19:34:26 +08:00
string ( REGEX REPLACE "-" "" SFLAG1 ${ FLAG } )
string ( REGEX REPLACE "\\+" "p" SFLAG ${ SFLAG1 } )
2013-04-12 21:24:41 +08:00
check_cxx_compiler_flag ( ${ FLAG } COMPILER_SUPPORT_ ${ SFLAG } )
if ( COMPILER_SUPPORT_ ${ SFLAG } )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${FLAG}" )
endif ( )
endmacro ( ei_add_cxx_compiler_flag )
if ( NOT MSVC )
# We assume that other compilers are partly compatible with GNUCC
2014-07-22 19:16:44 +08:00
# set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fexceptions")
2010-02-21 00:39:58 +08:00
set ( CMAKE_CXX_FLAGS_DEBUG "-g3" )
set ( CMAKE_CXX_FLAGS_RELEASE "-g0 -O2" )
2013-02-15 21:01:30 +08:00
2013-04-12 21:24:41 +08:00
# clang outputs some warnings for unknwon flags that are not caught by check_cxx_compiler_flag
# 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-21 00:39:58 +08:00
endif ( )
2013-04-12 21:24:41 +08: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
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 16:33:16 +08:00
ei_add_cxx_compiler_flag ( "-Wshorten-64-to-32" )
2014-07-17 19:34:26 +08:00
ei_add_cxx_compiler_flag ( "-Wenum-conversion" )
ei_add_cxx_compiler_flag ( "-Wc++11-extensions" )
2013-04-12 21:24:41 +08:00
2015-06-09 23:44:18 +08:00
# -Wshadow is insanely too strict with gcc, hopefully it will become usable with gcc 6
# if(NOT CMAKE_COMPILER_IS_GNUCXX OR (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER "5.0.0"))
if ( NOT CMAKE_COMPILER_IS_GNUCXX )
ei_add_cxx_compiler_flag ( "-Wshadow" )
endif ( )
2013-04-12 21:24:41 +08:00
ei_add_cxx_compiler_flag ( "-Wno-psabi" )
ei_add_cxx_compiler_flag ( "-Wno-variadic-macros" )
ei_add_cxx_compiler_flag ( "-Wno-long-long" )
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 19:02:30 +08:00
ei_add_cxx_compiler_flag ( "-wd981" ) # disable ICC's "operands are evaluated in unspecified order" remark
ei_add_cxx_compiler_flag ( "-wd2304" ) # disbale ICC's "warning #2304: non-explicit constructor with single argument may cause implicit type conversion" produced by -Wnon-virtual-dtor
2013-04-12 21:24:41 +08:00
2014-07-17 19:34:26 +08:00
2013-04-12 21:24:41 +08:00
# The -ansi flag must be added last, otherwise it is also used as a linker flag by check_cxx_compiler_flag making it fails
2013-04-12 21:51:40 +08:00
# Moreover we should not set both -strict-ansi and -ansi
check_cxx_compiler_flag ( "-strict-ansi" COMPILER_SUPPORT_STRICTANSI )
2013-06-21 15:24:57 +08:00
ei_add_cxx_compiler_flag ( "-Qunused-arguments" ) # disable clang warning: argument unused during compilation: '-ansi'
2013-04-12 21:51:40 +08:00
if ( COMPILER_SUPPORT_STRICTANSI )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -strict-ansi" )
else ( )
ei_add_cxx_compiler_flag ( "-ansi" )
endif ( )
2015-04-08 02:03:21 +08:00
if ( ANDROID_NDK )
ei_add_cxx_compiler_flag ( "-pie" )
ei_add_cxx_compiler_flag ( "-fPIE" )
endif ( )
2013-04-12 21:24:41 +08:00
set ( CMAKE_REQUIRED_FLAGS "" )
2010-02-21 00:39:58 +08: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-30 05:02:01 +08:00
message ( STATUS "Enabling SSE2 in tests/examples" )
2010-02-21 00:39:58 +08: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-30 05:02:01 +08:00
message ( STATUS "Enabling SSE3 in tests/examples" )
2010-02-21 00:39:58 +08: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-30 05:02:01 +08:00
message ( STATUS "Enabling SSSE3 in tests/examples" )
2010-02-21 00:39:58 +08: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-30 05:02:01 +08:00
message ( STATUS "Enabling SSE4.1 in tests/examples" )
2010-02-21 00:39:58 +08: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-30 05:02:01 +08:00
message ( STATUS "Enabling SSE4.2 in tests/examples" )
2010-02-21 00:39:58 +08:00
endif ( )
2014-03-25 00:52:45 +08:00
option ( EIGEN_TEST_AVX "Enable/Disable AVX in tests/examples" OFF )
2014-01-30 03: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-25 00:52:45 +08:00
option ( EIGEN_TEST_FMA "Enable/Disable FMA in tests/examples" OFF )
2015-04-08 02:03:21 +08:00
if ( EIGEN_TEST_FMA AND NOT EIGEN_TEST_NEON )
2014-03-25 00:52:45 +08:00
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mfma" )
message ( STATUS "Enabling FMA in tests/examples" )
endif ( )
2010-03-04 02:16:21 +08:00
option ( EIGEN_TEST_ALTIVEC "Enable/Disable AltiVec in tests/examples" OFF )
2010-02-21 00:39:58 +08:00
if ( EIGEN_TEST_ALTIVEC )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -maltivec -mabi=altivec" )
2010-12-30 05:02:01 +08:00
message ( STATUS "Enabling AltiVec in tests/examples" )
2010-02-21 00:39:58 +08:00
endif ( )
2010-03-04 01:25:41 +08:00
2014-08-30 04:03:49 +08: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 ( )
2010-03-04 02:16:21 +08:00
option ( EIGEN_TEST_NEON "Enable/Disable Neon in tests/examples" OFF )
2010-03-04 01:25:41 +08:00
if ( EIGEN_TEST_NEON )
2015-04-08 02:03:21 +08: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 ( )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mfloat-abi=softfp" )
2010-12-30 05:02:01 +08:00
message ( STATUS "Enabling NEON in tests/examples" )
2010-03-04 01:25:41 +08:00
endif ( )
2014-10-22 02:10:01 +08: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 ( )
2010-03-05 17:22:27 +08: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-30 05:02:01 +08:00
message ( STATUS "Enabling OpenMP in tests/examples" )
2010-03-05 17:22:27 +08:00
endif ( )
endif ( )
2013-04-12 21:24:41 +08:00
else ( NOT MSVC )
2007-05-30 14:57:40 +08:00
2010-02-21 00:39:58 +08:00
# C4127 - conditional expression is constant
2010-05-20 01:35:42 +08: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.
# C4505 - unreferenced local function has been removed (impossible to deactive selectively)
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /EHsc /wd4127 /wd4505 /wd4714" )
2010-07-01 13:28:16 +08:00
# replace all /Wx by /W4
2010-02-21 22:23:51 +08:00
string ( REGEX REPLACE "/W[0-9]" "/W4" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}" )
2010-07-01 13:28:16 +08: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-30 05:02:01 +08:00
message ( STATUS "Enabling OpenMP in tests/examples" )
2010-07-01 13:28:16 +08:00
endif ( )
endif ( )
2008-12-18 17:07:36 +08:00
option ( EIGEN_TEST_SSE2 "Enable/Disable SSE2 in tests/examples" OFF )
if ( EIGEN_TEST_SSE2 )
2009-08-28 06:05:44 +08:00
if ( NOT CMAKE_CL_64 )
2009-09-25 19:08:39 +08:00
# arch is not supported on 64 bit systems, SSE is enabled automatically.
2009-08-28 06:05:44 +08:00
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /arch:SSE2" )
endif ( NOT CMAKE_CL_64 )
2010-12-30 05:02:01 +08:00
message ( STATUS "Enabling SSE2 in tests/examples" )
2008-12-18 17:07:36 +08:00
endif ( EIGEN_TEST_SSE2 )
2013-04-12 21:24:41 +08:00
endif ( NOT MSVC )
2008-12-18 17:07:36 +08:00
2009-01-14 22:24:10 +08:00
option ( EIGEN_TEST_NO_EXPLICIT_VECTORIZATION "Disable explicit vectorization in tests/examples" OFF )
2010-10-13 21:04:59 +08:00
option ( EIGEN_TEST_X87 "Force using X87 instructions. Implies no vectorization." OFF )
2011-02-28 06:27:23 +08:00
option ( EIGEN_TEST_32BIT "Force generating 32bit code." OFF )
2010-10-13 21:04:59 +08: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-30 05:02:01 +08:00
message ( STATUS "Forcing use of x87 instructions in tests/examples" )
2010-10-13 21:04:59 +08:00
else ( )
2010-12-30 05:02:01 +08:00
message ( STATUS "EIGEN_TEST_X87 ignored on your compiler" )
2010-10-13 21:04:59 +08:00
endif ( )
endif ( )
2011-02-28 06:27:23 +08: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 22:24:10 +08:00
if ( EIGEN_TEST_NO_EXPLICIT_VECTORIZATION )
2009-01-15 16:26:40 +08:00
add_definitions ( -DEIGEN_DONT_VECTORIZE=1 )
2010-12-30 05:02:01 +08:00
message ( STATUS "Disabling vectorization in tests/examples" )
2010-03-06 15:17:37 +08: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-30 05:02:01 +08:00
message ( STATUS "Disabling alignment in tests/examples" )
2010-03-06 15:17:37 +08:00
endif ( )
2009-01-14 22:24:10 +08:00
2014-07-22 19:16:44 +08: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 ( )
2015-02-20 16:31:27 +08:00
option ( EIGEN_TEST_CXX11 "Enable testing with C++11 and C++11 features (e.g. Tensor module)." OFF )
2009-09-22 01:59:58 +08:00
2008-12-02 20:59:10 +08:00
include_directories ( ${ CMAKE_CURRENT_SOURCE_DIR } ${ CMAKE_CURRENT_BINARY_DIR } )
2007-05-30 14:57:40 +08:00
2010-04-08 19:28:21 +08:00
# the user modifiable install path for header files
set ( EIGEN_INCLUDE_INSTALL_DIR ${ EIGEN_INCLUDE_INSTALL_DIR } CACHE PATH "The directory where we install the header files (optional)" )
# set the internal install path for header files which depends on wether the user modifiable
# EIGEN_INCLUDE_INSTALL_DIR has been set by the user or not.
if ( EIGEN_INCLUDE_INSTALL_DIR )
set ( INCLUDE_INSTALL_DIR
$ { E I G E N _ I N C L U D E _ I N S T A L L _ D I R }
C A C H E I N T E R N A L
" T h e d i r e c t o r y w h e r e w e i n s t a l l t h e h e a d e r files ( internal ) "
)
else ( )
set ( INCLUDE_INSTALL_DIR
2009-11-20 01:09:04 +08:00
" $ { C M A K E _ I N S T A L L _ P R E F I X } / i n c l u d e / e i g e n 3 "
2010-04-08 19:28:21 +08:00
C A C H E I N T E R N A L
" T h e d i r e c t o r y w h e r e w e i n s t a l l t h e h e a d e r files ( internal ) "
)
endif ( )
2009-02-05 17:37:53 +08:00
2010-06-28 06:05:11 +08:00
# similar to set_target_properties but append the property instead of overwriting it
macro ( ei_add_target_property target prop value )
get_target_property ( previous ${ target } ${ prop } )
# if the property wasn't previously set, ${previous} is now "previous-NOTFOUND" which cmake allows catching with plain if()
if ( NOT previous )
set ( previous "" )
endif ( NOT previous )
set_target_properties ( ${ target } PROPERTIES ${ prop } "${previous} ${value}" )
endmacro ( ei_add_target_property )
2009-11-20 01:41:28 +08: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-20 00:48:50 +08:00
if ( EIGEN_BUILD_PKGCONFIG )
2011-08-31 08:15:16 +08:00
SET ( path_separator ":" )
STRING ( REPLACE ${ path_separator } ";" pkg_config_libdir_search "$ENV{PKG_CONFIG_LIBDIR}" )
message ( STATUS "searching for 'pkgconfig' directory in PKG_CONFIG_LIBDIR ( $ENV{PKG_CONFIG_LIBDIR} ), ${CMAKE_INSTALL_PREFIX}/share, and ${CMAKE_INSTALL_PREFIX}/lib" )
FIND_PATH ( pkg_config_libdir pkgconfig ${ pkg_config_libdir_search } ${ CMAKE_INSTALL_PREFIX } /share ${ CMAKE_INSTALL_PREFIX } /lib ${ pkg_config_libdir_search } )
2011-11-23 01:30:35 +08:00
if ( pkg_config_libdir )
SET ( pkg_config_install_dir ${ pkg_config_libdir } )
message ( STATUS "found ${pkg_config_libdir}/pkgconfig" )
else ( pkg_config_libdir )
SET ( pkg_config_install_dir ${ CMAKE_INSTALL_PREFIX } /share )
message ( STATUS "pkgconfig not found; installing in ${pkg_config_install_dir}" )
endif ( pkg_config_libdir )
2011-08-31 08:15:16 +08:00
2009-11-20 01:09:04 +08:00
configure_file ( eigen3.pc.in eigen3.pc )
install ( FILES ${ CMAKE_CURRENT_BINARY_DIR } /eigen3.pc
2011-11-23 01:30:35 +08: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 } / p k g c o n f i g
2009-05-20 00:48:50 +08:00
)
endif ( EIGEN_BUILD_PKGCONFIG )
2008-12-02 20:59:10 +08:00
add_subdirectory ( Eigen )
2008-07-09 22:04:48 +08:00
2009-09-28 05:48:53 +08:00
add_subdirectory ( doc EXCLUDE_FROM_ALL )
2009-02-28 00:19:13 +08:00
2011-02-20 18:54:07 +08:00
include ( EigenConfigureTesting )
2013-03-20 15:40:13 +08:00
2011-11-10 04:19:05 +08:00
# fixme, not sure this line is still needed:
2009-09-28 05:48:53 +08:00
enable_testing ( ) # must be called from the root CMakeLists, see man page
2011-02-15 19:39:45 +08:00
2011-02-15 18:40:43 +08:00
2009-11-13 01:07:18 +08:00
if ( EIGEN_LEAVE_TEST_IN_ALL_TARGET )
2009-11-13 21:05:57 +08:00
add_subdirectory ( test ) # can't do EXCLUDE_FROM_ALL here, breaks CTest
2009-11-13 01:07:18 +08:00
else ( )
2009-11-13 21:05:57 +08:00
add_subdirectory ( test EXCLUDE_FROM_ALL )
2009-11-13 01:07:18 +08:00
endif ( )
2008-12-02 20:59:10 +08:00
2011-11-05 20:26:53 +08: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 16:27:38 +08:00
endif ( )
2009-09-25 19:08:39 +08:00
2011-02-23 16:25:32 +08:00
add_subdirectory ( unsupported )
add_subdirectory ( demos EXCLUDE_FROM_ALL )
2009-11-26 10:26:37 +08:00
# must be after test and unsupported, for configuring buildtests.in
2009-11-13 01:07:18 +08:00
add_subdirectory ( scripts EXCLUDE_FROM_ALL )
2009-09-28 05:48:53 +08:00
# TODO: consider also replacing EIGEN_BUILD_BTL by a custom target "make btl"?
2008-12-02 20:59:10 +08:00
if ( EIGEN_BUILD_BTL )
2009-09-28 05:48:53 +08:00
add_subdirectory ( bench/btl EXCLUDE_FROM_ALL )
2008-12-02 20:59:10 +08:00
endif ( EIGEN_BUILD_BTL )
2009-02-28 00:19:13 +08:00
2012-06-08 00:31:09 +08:00
if ( NOT WIN32 )
add_subdirectory ( bench/spbench EXCLUDE_FROM_ALL )
endif ( NOT WIN32 )
2012-03-29 20:32:54 +08:00
2013-03-20 15:40:13 +08:00
configure_file ( scripts/cdashtesting.cmake.in cdashtesting.cmake @ONLY )
2009-09-28 05:48:53 +08:00
ei_testing_print_summary ( )
2009-10-20 03:56:03 +08:00
2010-12-30 05:02:01 +08:00
message ( STATUS "" )
message ( STATUS "Configured Eigen ${EIGEN_VERSION_NUMBER}" )
message ( STATUS "" )
2009-10-20 03:56:03 +08:00
2011-02-06 20:43:08 +08:00
option ( EIGEN_FAILTEST "Enable failtests." OFF )
2011-02-06 07:57:29 +08:00
if ( EIGEN_FAILTEST )
add_subdirectory ( failtest )
endif ( )
2010-12-17 16:42:17 +08:00
string ( TOLOWER "${CMAKE_GENERATOR}" cmake_generator_tolower )
2009-10-20 03:56:03 +08:00
if ( cmake_generator_tolower MATCHES "makefile" )
2010-12-30 05:02:01 +08:00
message ( STATUS "Some things you can do now:" )
2011-01-01 19:02:55 +08:00
message ( STATUS "--------------+--------------------------------------------------------------" )
2010-12-30 05:02:01 +08:00
message ( STATUS "Command | Description" )
2011-01-01 19:02:55 +08:00
message ( STATUS "--------------+--------------------------------------------------------------" )
2010-12-30 05:02:01 +08:00
message ( STATUS "make install | Install to ${CMAKE_INSTALL_PREFIX}. To change that:" )
message ( STATUS " | cmake . -DCMAKE_INSTALL_PREFIX=yourpath" )
message ( STATUS " | Eigen headers will then be installed to:" )
message ( STATUS " | ${INCLUDE_INSTALL_DIR}" )
message ( STATUS " | To install Eigen headers to a separate location, do:" )
message ( STATUS " | cmake . -DEIGEN_INCLUDE_INSTALL_DIR=yourpath" )
message ( STATUS "make doc | Generate the API documentation, requires Doxygen & LaTeX" )
message ( STATUS "make check | Build and run the unit-tests. Read this page:" )
message ( STATUS " | http://eigen.tuxfamily.org/index.php?title=Tests" )
message ( STATUS "make blas | Build BLAS library (not the same thing as Eigen)" )
2014-12-04 15:57:03 +08:00
message ( STATUS "make uninstall| Removes files installed by make install" )
2011-01-01 19:02:55 +08:00
message ( STATUS "--------------+--------------------------------------------------------------" )
2009-11-16 10:12:15 +08:00
else ( )
2010-12-30 05:02:01 +08:00
message ( STATUS "To build/run the unit tests, read this page:" )
message ( STATUS " http://eigen.tuxfamily.org/index.php?title=Tests" )
2009-10-20 03:56:03 +08:00
endif ( )
2009-11-13 01:07:18 +08:00
2010-12-30 05:02:01 +08:00
message ( STATUS "" )
2013-10-09 16:25:50 +08:00
set ( EIGEN_CONFIG_CMAKE_PATH
l i b $ { L I B _ S U F F I X } / c m a k e / e i g e n 3
C A C H E P A T H " T h e d i r e c t o r y w h e r e t h e C M a k e f i l e s a r e i n s t a l l e d "
)
if ( NOT IS_ABSOLUTE EIGEN_CONFIG_CMAKE_PATH )
set ( EIGEN_CONFIG_CMAKE_PATH ${ CMAKE_INSTALL_PREFIX } / ${ EIGEN_CONFIG_CMAKE_PATH } )
endif ( )
set ( EIGEN_USE_FILE ${ EIGEN_CONFIG_CMAKE_PATH } /UseEigen3.cmake )
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 } )
set ( EIGEN_DEFINITIONS "" )
set ( EIGEN_INCLUDE_DIR ${ INCLUDE_INSTALL_DIR } )
set ( EIGEN_INCLUDE_DIRS ${ EIGEN_INCLUDE_DIR } )
set ( EIGEN_ROOT_DIR ${ CMAKE_INSTALL_PREFIX } )
2014-06-06 17:06:44 +08:00
configure_file ( ${ CMAKE_CURRENT_SOURCE_DIR } /cmake/Eigen3Config.cmake.in
2013-10-09 16:25:50 +08:00
$ { 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
@ O N L Y E S C A P E _ Q U O T E S
)
2014-06-06 17:06:44 +08:00
install ( FILES ${ CMAKE_CURRENT_SOURCE_DIR } /cmake/UseEigen3.cmake
2013-10-09 16:25:50 +08:00
$ { 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
D E S T I N A T I O N $ { E I G E N _ C O N F I G _ C M A K E _ P A T H }
)
2014-12-04 15:57:03 +08:00
# Add uninstall target
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 )