glm/CMakeLists.txt

95 lines
2.1 KiB
CMake
Raw Normal View History

2010-04-29 10:56:52 +00:00
cmake_minimum_required(VERSION 2.6 FATAL_ERROR)
cmake_policy(VERSION 2.6)
project(glm)
2011-02-23 14:45:54 +00:00
enable_testing()
2010-04-29 10:56:52 +00:00
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
2011-05-31 16:41:21 +00:00
2012-04-14 17:19:28 +00:00
option(GLM_TEST_ENABLE "GLM test" OFF)
if(NOT GLM_TEST_ENABLE)
message(FATAL_ERROR "GLM is a header only library, no need to build it. Set the option GLM_TEST_ENABLE with ON to build and run the test bench")
endif()
option(GLM_TEST_ENABLE_CXX_11 "Enable C++ 11" OFF)
if(GLM_TEST_ENABLE_CXX_11)
if(CMAKE_COMPILER_IS_GNUCXX)
2012-06-28 16:01:02 +00:00
add_definitions(-std=c++0x)
2012-04-14 17:19:28 +00:00
endif()
elseif(NOT GLM_TEST_ENABLE_CXX_11)
if(CMAKE_COMPILER_IS_GNUCXX)
add_definitions(-std=c++98)
endif()
endif()
option(GLM_TEST_ENABLE_MS_EXTENSIONS "Enable MS extensions" OFF)
if(GLM_TEST_ENABLE_MS_EXTENSIONS)
if(CMAKE_COMPILER_IS_GNUCXX)
2012-06-28 16:01:02 +00:00
#Doesn't seem to work...
#add_definitions(-fms-extensions)
#add_definitions(-D_MSC_EXTENSIONS)
2012-04-14 17:19:28 +00:00
endif()
elseif(NOT GLM_TEST_ENABLE_MS_EXTENSIONS)
if(CMAKE_COMPILER_IS_GNUCXX)
add_definitions(-std=c++98)
add_definitions(-pedantic)
endif()
if(MSVC)
add_definitions(/Za)
endif()
endif()
option(GLM_TEST_ENABLE_SIMD "Enable SIMD optimizations" OFF)
if(GLM_TEST_ENABLE_SIMD)
if(CMAKE_COMPILER_IS_GNUCXX)
add_definitions(-msse2)
endif()
if(MSVC)
add_definitions(/arch:SSE2)
endif()
elseif(NOT GLM_TEST_ENABLE_SIMD)
add_definitions(-DGLM_FORCE_PURE)
if(CMAKE_COMPILER_IS_GNUCXX)
add_definitions(-mfpmath=387)
endif()
endif()
option(GLM_TEST_ENABLE_FAST_MATH "Enable fast math optimizations" OFF)
if(GLM_TEST_ENABLE_FAST_MATH)
if(CMAKE_COMPILER_IS_GNUCXX)
add_definitions(-ffast-math)
endif()
if(MSVC)
add_definitions(/fp:fast)
endif()
elseif(NOT GLM_TEST_ENABLE_FAST_MATH)
if(MSVC)
add_definitions(/fp:precise)
endif()
endif()
2011-05-31 16:41:21 +00:00
if(CMAKE_COMPILER_IS_GNUCXX)
#add_definitions(-S)
#add_definitions(-s)
#add_definitions(-m32)
#add_definitions(-O3)
2011-06-03 07:53:38 +00:00
#add_definitions(-fprofile-arcs -ftest-coverage) gcov
#ctest_enable_coverage()
2011-05-31 16:41:21 +00:00
endif()
2010-04-29 10:56:52 +00:00
2010-12-17 01:33:17 +00:00
include_directories(".")
2011-06-23 19:20:16 +00:00
include_directories("./test/external")
2010-12-17 01:33:17 +00:00
2010-04-29 10:56:52 +00:00
add_subdirectory(glm)
2010-12-17 01:33:17 +00:00
add_subdirectory(test)
2011-01-19 16:14:43 +00:00
add_subdirectory(bench)
2010-04-29 10:56:52 +00:00
add_subdirectory(doc)
2010-04-29 14:45:55 +00:00
2011-02-23 14:44:05 +00:00
install(DIRECTORY glm DESTINATION include)