2008-12-02 20:59:10 +08:00
|
|
|
project(Eigen)
|
2008-08-27 14:43:42 +08:00
|
|
|
|
2009-08-15 09:58:41 +08:00
|
|
|
cmake_minimum_required(VERSION 2.6.2)
|
|
|
|
|
2009-05-20 06:04:08 +08:00
|
|
|
# automatically parse the version number
|
|
|
|
file(READ "${CMAKE_SOURCE_DIR}/Eigen/src/Core/util/Macros.h" _eigen2_version_header LIMIT 5000 OFFSET 1000)
|
|
|
|
string(REGEX MATCH "define *EIGEN_WORLD_VERSION ([0-9]*)" _eigen2_world_version_match "${_eigen2_version_header}")
|
|
|
|
set(EIGEN2_WORLD_VERSION "${CMAKE_MATCH_1}")
|
|
|
|
string(REGEX MATCH "define *EIGEN_MAJOR_VERSION ([0-9]*)" _eigen2_major_version_match "${_eigen2_version_header}")
|
|
|
|
set(EIGEN2_MAJOR_VERSION "${CMAKE_MATCH_1}")
|
|
|
|
string(REGEX MATCH "define *EIGEN_MINOR_VERSION ([0-9]*)" _eigen2_minor_version_match "${_eigen2_version_header}")
|
|
|
|
set(EIGEN2_MINOR_VERSION "${CMAKE_MATCH_1}")
|
2009-08-03 22:06:57 +08:00
|
|
|
set(EIGEN_VERSION_NUMBER ${EIGEN2_WORLD_VERSION}.${EIGEN2_MAJOR_VERSION}.${EIGEN2_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
|
|
|
|
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
|
|
|
|
2008-12-02 20:59:10 +08:00
|
|
|
option(EIGEN_BUILD_TESTS "Build tests" OFF)
|
|
|
|
option(EIGEN_BUILD_DEMOS "Build demos" OFF)
|
|
|
|
if(NOT WIN32)
|
|
|
|
option(EIGEN_BUILD_LIB "Build the binary shared library" OFF)
|
|
|
|
endif(NOT WIN32)
|
|
|
|
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
|
|
|
if(EIGEN_BUILD_LIB)
|
|
|
|
option(EIGEN_TEST_LIB "Build the unit tests using the library (disable -pedantic)" OFF)
|
|
|
|
endif(EIGEN_BUILD_LIB)
|
2007-05-30 14:57:40 +08:00
|
|
|
|
2008-12-02 20:59:10 +08:00
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
2007-05-30 14:57:40 +08:00
|
|
|
|
2008-12-02 20:59:10 +08:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX)
|
|
|
|
if(CMAKE_SYSTEM_NAME MATCHES Linux)
|
2009-05-06 16:15:54 +08:00
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wnon-virtual-dtor -Wno-long-long -ansi -Wundef -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -Wwrite-strings -Wformat-security -fno-exceptions -fno-check-new -fno-common -fstrict-aliasing")
|
|
|
|
|
|
|
|
check_cxx_compiler_flag("-Wextra" COMPILER_SUPPORT_WEXTRA)
|
|
|
|
if(COMPILER_SUPPORT_WEXTRA)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wextra")
|
|
|
|
endif()
|
|
|
|
|
2008-12-02 20:59:10 +08:00
|
|
|
if(NOT EIGEN_TEST_LIB)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic")
|
|
|
|
endif(NOT EIGEN_TEST_LIB)
|
2008-12-18 17:07:36 +08:00
|
|
|
|
|
|
|
option(EIGEN_TEST_SSE2 "Enable/Disable SSE2 in tests/examples" OFF)
|
2008-12-02 20:59:10 +08:00
|
|
|
if(EIGEN_TEST_SSE2)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -msse2")
|
|
|
|
message("Enabling SSE2 in tests/examples")
|
|
|
|
endif(EIGEN_TEST_SSE2)
|
2008-12-18 17:07:36 +08:00
|
|
|
|
|
|
|
option(EIGEN_TEST_SSE3 "Enable/Disable SSE3 in tests/examples" OFF)
|
2008-12-02 20:59:10 +08:00
|
|
|
if(EIGEN_TEST_SSE3)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -msse3")
|
|
|
|
message("Enabling SSE3 in tests/examples")
|
|
|
|
endif(EIGEN_TEST_SSE3)
|
2008-12-18 17:07:36 +08:00
|
|
|
|
|
|
|
option(EIGEN_TEST_SSSE3 "Enable/Disable SSSE3 in tests/examples" OFF)
|
2008-12-02 20:59:10 +08:00
|
|
|
if(EIGEN_TEST_SSSE3)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mssse3")
|
|
|
|
message("Enabling SSSE3 in tests/examples")
|
|
|
|
endif(EIGEN_TEST_SSSE3)
|
2008-12-18 17:07:36 +08:00
|
|
|
|
|
|
|
option(EIGEN_TEST_ALTIVEC "Enable/Disable altivec in tests/examples" OFF)
|
2008-12-02 20:59:10 +08:00
|
|
|
if(EIGEN_TEST_ALTIVEC)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -maltivec -mabi=altivec")
|
|
|
|
message("Enabling AltiVec in tests/examples")
|
|
|
|
endif(EIGEN_TEST_ALTIVEC)
|
2008-12-18 17:07:36 +08:00
|
|
|
|
2008-12-02 20:59:10 +08:00
|
|
|
endif(CMAKE_SYSTEM_NAME MATCHES Linux)
|
|
|
|
endif(CMAKE_COMPILER_IS_GNUCXX)
|
2007-05-30 14:57:40 +08:00
|
|
|
|
2008-12-18 17:07:36 +08:00
|
|
|
if(MSVC)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ")
|
|
|
|
|
|
|
|
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)
|
2008-12-18 17:07:36 +08:00
|
|
|
message("Enabling SSE2 in tests/examples")
|
|
|
|
endif(EIGEN_TEST_SSE2)
|
|
|
|
endif(MSVC)
|
|
|
|
|
2009-01-14 22:24:10 +08:00
|
|
|
option(EIGEN_TEST_NO_EXPLICIT_VECTORIZATION "Disable explicit vectorization in tests/examples" OFF)
|
|
|
|
if(EIGEN_TEST_NO_EXPLICIT_VECTORIZATION)
|
2009-01-15 16:26:40 +08:00
|
|
|
add_definitions(-DEIGEN_DONT_VECTORIZE=1)
|
2009-01-14 22:24:10 +08:00
|
|
|
message("Disabling vectorization in tests/examples")
|
|
|
|
endif(EIGEN_TEST_NO_EXPLICIT_VECTORIZATION)
|
|
|
|
|
2009-09-22 01:59:58 +08:00
|
|
|
option(EIGEN_TEST_C++0x "Enables all C++0x features." OFF)
|
|
|
|
|
|
|
|
option(EIGEN_TEST_RVALUE_REF_SUPPORT "Enable rvalue references for unit tests." OFF)
|
|
|
|
|
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
|
|
|
|
2009-02-05 17:37:53 +08:00
|
|
|
set(INCLUDE_INSTALL_DIR
|
|
|
|
"${CMAKE_INSTALL_PREFIX}/include/eigen2"
|
|
|
|
CACHE PATH
|
|
|
|
"The directory where we install the header files"
|
2009-08-04 23:06:54 +08:00
|
|
|
)
|
2009-02-05 17:37:53 +08:00
|
|
|
|
2009-05-20 00:48:50 +08:00
|
|
|
if(EIGEN_BUILD_PKGCONFIG)
|
|
|
|
configure_file(eigen2.pc.in eigen2.pc)
|
2009-05-27 23:36:46 +08:00
|
|
|
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/eigen2.pc
|
2009-05-20 00:48:50 +08:00
|
|
|
DESTINATION lib/pkgconfig
|
|
|
|
)
|
|
|
|
endif(EIGEN_BUILD_PKGCONFIG)
|
|
|
|
|
2008-12-02 20:59:10 +08:00
|
|
|
add_subdirectory(Eigen)
|
2008-07-09 22:04:48 +08:00
|
|
|
|
2009-02-28 00:19:13 +08:00
|
|
|
add_subdirectory(doc)
|
|
|
|
|
2008-12-02 20:59:10 +08:00
|
|
|
if(EIGEN_BUILD_TESTS)
|
2009-01-08 19:53:21 +08:00
|
|
|
include(CTest)
|
2008-12-02 20:59:10 +08:00
|
|
|
add_subdirectory(test)
|
|
|
|
endif(EIGEN_BUILD_TESTS)
|
|
|
|
|
2009-02-05 17:37:53 +08:00
|
|
|
add_subdirectory(unsupported)
|
|
|
|
|
2008-12-02 20:59:10 +08:00
|
|
|
if(EIGEN_BUILD_DEMOS)
|
|
|
|
add_subdirectory(demos)
|
|
|
|
endif(EIGEN_BUILD_DEMOS)
|
|
|
|
|
2009-09-25 19:08:39 +08:00
|
|
|
if(EIGEN_BUILD_BLAS)
|
|
|
|
add_subdirectory(blas)
|
|
|
|
endif(EIGEN_BUILD_BLAS)
|
|
|
|
|
2008-12-02 20:59:10 +08:00
|
|
|
if(EIGEN_BUILD_BTL)
|
|
|
|
add_subdirectory(bench/btl)
|
|
|
|
endif(EIGEN_BUILD_BTL)
|
2009-02-28 00:19:13 +08:00
|
|
|
|
|
|
|
if(EIGEN_BUILD_TESTS)
|
|
|
|
ei_testing_print_summary()
|
2009-05-20 00:48:50 +08:00
|
|
|
endif(EIGEN_BUILD_TESTS)
|