mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-11-27 06:30:28 +08:00
aebecae510
finally that's more subtle than just using ei_nested, because when flagging with NestByValueBit we want to store the expression by value already, regardless of whether it already had the NestByValueBit set. * rename temporary() ----> nestByValue() * move the old Product.h to disabled/, replace by what was ProductWIP.h * tweak -O and -g flags for tests and examples * reorder the tests -- basic things go first * simplifications, e.g. in many methoeds return derived() and count on implicit casting to the actual return type. * strip some not-really-useful stuff from the heaviest tests
31 lines
1.1 KiB
CMake
31 lines
1.1 KiB
CMake
PROJECT(Eigen)
|
|
|
|
OPTION(BUILD_TESTS "Build tests" OFF)
|
|
OPTION(BUILD_DOC "Build documentation and examples" OFF)
|
|
|
|
SET(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
IF(CMAKE_COMPILER_IS_GNUCXX)
|
|
IF(CMAKE_SYSTEM_NAME MATCHES Linux)
|
|
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -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")
|
|
IF(TEST_OPENMP)
|
|
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fopenmp")
|
|
MESSAGE("Enabling OpenMP in tests/examples")
|
|
ENDIF(TEST_OPENMP)
|
|
IF(TEST_SSE2)
|
|
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -msse2")
|
|
MESSAGE("Enabling SSE2 in tests/examples")
|
|
ENDIF(TEST_SSE2)
|
|
IF(TEST_ALTIVEC)
|
|
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -maltivec -mabi=altivec")
|
|
MESSAGE("Enabling AltiVec in tests/examples")
|
|
ENDIF(TEST_ALTIVEC)
|
|
ENDIF(CMAKE_SYSTEM_NAME MATCHES Linux)
|
|
ENDIF(CMAKE_COMPILER_IS_GNUCXX)
|
|
|
|
INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR})
|
|
|
|
ADD_SUBDIRECTORY(Eigen)
|
|
ADD_SUBDIRECTORY(test)
|
|
ADD_SUBDIRECTORY(doc)
|