2008-12-02 20:59:10 +08:00
|
|
|
project(Eigen)
|
2009-04-06 21:33:42 +08:00
|
|
|
set(EIGEN_VERSION_NUMBER "2.0.52-unstable")
|
2008-08-27 14:43:42 +08:00
|
|
|
|
|
|
|
#if the svnversion program is absent, this will leave the SVN_REVISION string empty,
|
|
|
|
#but won't stop CMake.
|
2008-12-02 20:59:10 +08:00
|
|
|
execute_process(COMMAND svnversion -n ${CMAKE_SOURCE_DIR}
|
2009-01-05 01:32:20 +08:00
|
|
|
OUTPUT_VARIABLE EIGEN_SVNVERSION_OUTPUT)
|
|
|
|
|
|
|
|
#we only want EIGEN_SVN_REVISION if it is an actual revision number, not a string like "exported"
|
|
|
|
string(REGEX MATCH "^[0-9]+.*" EIGEN_SVN_REVISION "${EIGEN_SVNVERSION_OUTPUT}")
|
2008-08-27 14:43:42 +08:00
|
|
|
|
2008-12-02 20:59:10 +08:00
|
|
|
if(EIGEN_SVN_REVISION)
|
|
|
|
set(EIGEN_VERSION "${EIGEN_VERSION_NUMBER} (SVN revision ${EIGEN_SVN_REVISION})")
|
|
|
|
else(EIGEN_SVN_REVISION)
|
|
|
|
set(EIGEN_VERSION "${EIGEN_VERSION_NUMBER}")
|
|
|
|
endif(EIGEN_SVN_REVISION)
|
2008-08-27 14:43:42 +08:00
|
|
|
|
2009-01-05 00:19:12 +08:00
|
|
|
cmake_minimum_required(VERSION 2.6.2)
|
2008-06-01 07:21:49 +08:00
|
|
|
|
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)
|
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)
|
2008-12-18 02:37:04 +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 -Wextra -fno-exceptions -fno-check-new -fno-common -fstrict-aliasing")
|
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)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /arch:SSE2")
|
|
|
|
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)
|
|
|
|
|
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"
|
|
|
|
FORCE)
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
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()
|
|
|
|
endif(EIGEN_BUILD_TESTS)
|