2008-12-02 12:59:10 +00:00
project ( Eigen )
2008-08-27 06:43:42 +00:00
2009-08-14 21:58:41 -04:00
cmake_minimum_required ( VERSION 2.6.2 )
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 ( )
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
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 10:15:36 -05: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 10:15:22 -04:00
endif ( )
2010-04-19 11:19:22 -04:00
#############################################################################
# retrieve version infomation #
#############################################################################
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
2009-08-14 21:58:41 -04:00
# if the mercurial program is absent, this will leave the EIGEN_HG_CHANGESET string empty,
2009-05-20 00:04:08 +02:00
# but won't stop CMake.
execute_process ( COMMAND hg tip -R ${ CMAKE_SOURCE_DIR } OUTPUT_VARIABLE EIGEN_HGTIP_OUTPUT )
2009-08-14 21:58:41 -04: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 12:59:10 +00:00
set ( EIGEN_VERSION "${EIGEN_VERSION_NUMBER}" )
2009-08-14 21:58:41 -04:00
endif ( EIGEN_HG_CHANGESET )
2008-05-31 23:21:49 +00:00
2010-04-19 11:19:22 -04:00
2009-05-06 08:15:54 +00:00
include ( CheckCXXCompilerFlag )
2008-08-23 17:40:52 +00:00
set ( CMAKE_MODULE_PATH ${ PROJECT_SOURCE_DIR } /cmake )
2008-08-23 17:25:54 +00:00
2010-04-19 11:19:22 -04:00
#############################################################################
# find how to link to the standard libraries #
#############################################################################
find_package ( StandardMathLibrary )
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 )
2009-05-19 11:48:50 -05:00
if ( NOT WIN32 )
option ( EIGEN_BUILD_PKGCONFIG "Build pkg-config .pc file for Eigen" ON )
endif ( NOT WIN32 )
2008-07-09 14:04:48 +00:00
2008-12-02 12:59:10 +00:00
set ( CMAKE_INCLUDE_CURRENT_DIR ON )
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 ( )
2008-12-02 12:59:10 +00:00
if ( CMAKE_COMPILER_IS_GNUCXX )
2010-02-20 17:39:58 +01: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 -fexceptions -fno-check-new -fno-common -fstrict-aliasing" )
set ( CMAKE_CXX_FLAGS_DEBUG "-g3" )
set ( CMAKE_CXX_FLAGS_RELEASE "-g0 -O2" )
check_cxx_compiler_flag ( "-Wno-variadic-macros" COMPILER_SUPPORT_WNOVARIADICMACRO )
if ( COMPILER_SUPPORT_WNOVARIADICMACRO )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-variadic-macros" )
endif ( )
check_cxx_compiler_flag ( "-Wextra" COMPILER_SUPPORT_WEXTRA )
if ( COMPILER_SUPPORT_WEXTRA )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wextra" )
endif ( )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic" )
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 ( )
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
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 )
2010-12-10 20:27:46 +02:00
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mfloat-abi=softfp -mfpu=neon -mcpu=cortex-a8" )
2010-12-29 22:02:01 +01:00
message ( STATUS "Enabling NEON in tests/examples" )
2010-03-03 11:25:41 -06:00
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 ( )
2008-12-02 12:59:10 +00:00
endif ( CMAKE_COMPILER_IS_GNUCXX )
2007-05-30 06:57:40 +00:00
2008-12-18 09:07:36 +00:00
if ( MSVC )
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.
# 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 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" )
endif ( NOT CMAKE_CL_64 )
2010-12-29 22:02:01 +01:00
message ( STATUS "Enabling SSE2 in tests/examples" )
2008-12-18 09:07:36 +00:00
endif ( EIGEN_TEST_SSE2 )
endif ( MSVC )
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 )
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 ( )
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
2009-09-21 19:59:58 +02:00
option ( EIGEN_TEST_C++0x "Enables all C++0x features." OFF )
2008-12-02 12:59:10 +00:00
include_directories ( ${ CMAKE_CURRENT_SOURCE_DIR } ${ CMAKE_CURRENT_BINARY_DIR } )
2007-05-30 06:57:40 +00:00
2010-04-08 13:28:21 +02: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-19 12:09:04 -05: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 13:28:21 +02: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 09:37:53 +00:00
2010-06-28 00:05:11 +02: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-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 )
2009-11-19 12:09:04 -05:00
configure_file ( eigen3.pc.in eigen3.pc )
install ( FILES ${ CMAKE_CURRENT_BINARY_DIR } /eigen3.pc
2009-11-11 15:28:39 +01:00
D E S T I N A T I O N s h a r e / p k g c o n f i g
2009-05-19 11:48:50 -05:00
)
endif ( EIGEN_BUILD_PKGCONFIG )
2008-12-02 12:59:10 +00:00
add_subdirectory ( Eigen )
2008-07-09 14:04:48 +00:00
2009-09-27 17:48:53 -04:00
add_subdirectory ( doc EXCLUDE_FROM_ALL )
2009-02-27 16:19:13 +00:00
2009-09-27 17:48:53 -04:00
include ( CTest )
enable_testing ( ) # must be called from the root CMakeLists, see man page
2009-11-25 21:26:37 -05:00
include ( EigenTesting )
ei_init_testing ( )
2009-11-12 12:07:18 -05:00
if ( EIGEN_LEAVE_TEST_IN_ALL_TARGET )
2009-11-13 13:05:57 +00:00
add_subdirectory ( test ) # can't do EXCLUDE_FROM_ALL here, breaks CTest
2009-11-12 12:07:18 -05:00
else ( )
2009-11-13 13:05:57 +00:00
add_subdirectory ( test EXCLUDE_FROM_ALL )
2009-11-12 12:07:18 -05:00
endif ( )
2008-12-02 12:59:10 +00:00
2009-02-05 09:37:53 +00:00
add_subdirectory ( unsupported )
2009-09-27 17:48:53 -04:00
add_subdirectory ( demos EXCLUDE_FROM_ALL )
2008-12-02 12:59:10 +00:00
2010-12-16 20:51:44 +01:00
if ( NOT MSVC )
2011-01-26 16:34:45 +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 )
endif ( )
2010-12-16 20:51:44 +01:00
endif ( NOT MSVC )
2009-09-25 13:08:39 +02:00
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 )
2008-12-02 12:59:10 +00:00
endif ( EIGEN_BUILD_BTL )
2009-02-27 16:19:13 +00:00
2009-09-27 17:48:53 -04:00
ei_testing_print_summary ( )
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
2011-02-06 13:43:08 +01:00
option ( EIGEN_FAILTEST "Enable failtests." OFF )
2011-02-05 18:57:29 -05:00
if ( EIGEN_FAILTEST )
add_subdirectory ( failtest )
endif ( )
2010-12-17 09:42:17 +01:00
string ( TOLOWER "${CMAKE_GENERATOR}" cmake_generator_tolower )
2009-10-19 15:56:03 -04:00
if ( cmake_generator_tolower MATCHES "makefile" )
2010-12-29 22:02:01 +01:00
message ( STATUS "Some things you can do now:" )
2011-01-01 12:02:55 +01:00
message ( STATUS "--------------+--------------------------------------------------------------" )
2010-12-29 22:02:01 +01:00
message ( STATUS "Command | Description" )
2011-01-01 12:02:55 +01:00
message ( STATUS "--------------+--------------------------------------------------------------" )
2010-12-29 22:02:01 +01: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)" )
2011-01-01 12:02:55 +01:00
message ( STATUS "--------------+--------------------------------------------------------------" )
2009-11-15 21:12:15 -05:00
else ( )
2010-12-29 22:02:01 +01:00
message ( STATUS "To build/run the unit tests, read this page:" )
message ( STATUS " http://eigen.tuxfamily.org/index.php?title=Tests" )
2009-10-19 15:56:03 -04:00
endif ( )
2009-11-12 12:07:18 -05:00
2010-12-29 22:02:01 +01:00
message ( STATUS "" )