mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-11-27 06:30:28 +08:00
613c49b475
* add -pedantic to CXXFLAGS * cleanup intricated expressions with && and || which gave warnings because of "missing" parentheses * fix compile error in NumTraits, apparently discovered by -pedantic
19 lines
674 B
CMake
19 lines
674 B
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")
|
|
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)
|