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
|
|
|
|
2014-04-15 09:26:28 +00:00
|
|
|
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
|
|
|
|
include(GNUInstallDirs)
|
|
|
|
|
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)
|
2014-04-15 09:30:58 +00:00
|
|
|
message(STATUS "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")
|
2012-04-14 17:19:28 +00:00
|
|
|
endif()
|
|
|
|
|
2013-08-20 21:07:04 +00:00
|
|
|
if(("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang") OR ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") OR (("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Intel") AND UNIX))
|
|
|
|
option(GLM_TEST_ENABLE_CXX_98 "Enable C++ 98" OFF)
|
|
|
|
option(GLM_TEST_ENABLE_CXX_0X "Enable C++ 0x" OFF)
|
|
|
|
option(GLM_TEST_ENABLE_CXX_11 "Enable C++ 11" OFF)
|
|
|
|
option(GLM_TEST_ENABLE_CXX_1Y "Enable C++ 1y" OFF)
|
|
|
|
option(GLM_TEST_ENABLE_CXX_PEDANTIC "Pedantic" ON)
|
|
|
|
|
|
|
|
if(GLM_TEST_ENABLE_CXX_PEDANTIC)
|
|
|
|
add_definitions(-pedantic)
|
2013-01-31 23:45:24 +00:00
|
|
|
endif()
|
|
|
|
|
2013-08-20 21:07:04 +00:00
|
|
|
if(GLM_TEST_ENABLE_CXX_1Y)
|
2013-09-10 17:58:02 +00:00
|
|
|
set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LANGUAGE_STANDARD "c++1y")
|
|
|
|
set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LIBRARY "libc++")
|
|
|
|
set(CMAKE_CXX_FLAGS "-std=c++1y")
|
2013-08-20 21:07:04 +00:00
|
|
|
elseif(GLM_TEST_ENABLE_CXX_11)
|
2013-09-10 17:58:02 +00:00
|
|
|
set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LANGUAGE_STANDARD "c++11")
|
|
|
|
set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LIBRARY "libc++")
|
|
|
|
set(CMAKE_CXX_FLAGS "-std=c++11")
|
2013-08-20 21:07:04 +00:00
|
|
|
elseif(GLM_TEST_ENABLE_CXX_0X)
|
2013-09-10 17:58:02 +00:00
|
|
|
set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LANGUAGE_STANDARD "c++0x")
|
|
|
|
set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LIBRARY "libc++")
|
|
|
|
set(CMAKE_CXX_FLAGS "-std=c++0x")
|
2013-08-20 21:07:04 +00:00
|
|
|
elseif(GLM_TEST_ENABLE_CXX_98)
|
2013-09-10 17:58:02 +00:00
|
|
|
set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LANGUAGE_STANDARD "c++98")
|
|
|
|
set(CMAKE_XCODE_ATTRIBUTE_CLANG_CXX_LIBRARY "libc++")
|
|
|
|
set(CMAKE_CXX_FLAGS "-std=c++98")
|
2012-04-14 17:19:28 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2013-08-20 21:07:04 +00:00
|
|
|
if(("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC") OR (("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Intel") AND WIN32))
|
|
|
|
option(GLM_TEST_ENABLE_MS_EXTENSIONS "Enable MS extensions" OFF)
|
2012-04-14 17:19:28 +00:00
|
|
|
|
2013-08-20 21:07:04 +00:00
|
|
|
if(NOT GLM_TEST_ENABLE_MS_EXTENSIONS)
|
|
|
|
add_definitions(/Za)
|
2012-04-14 17:19:28 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2013-10-19 10:13:38 +00:00
|
|
|
option(GLM_TEST_ENABLE_SIMD_SSE2 "Enable SSE2 optimizations" OFF)
|
|
|
|
option(GLM_TEST_ENABLE_SIMD_SSE3 "Enable SSE3 optimizations" OFF)
|
|
|
|
option(GLM_TEST_ENABLE_SIMD_AVX "Enable AVX optimizations" OFF)
|
|
|
|
option(GLM_TEST_ENABLE_SIMD_AVX2 "Enable AVX2 optimizations" OFF)
|
2013-09-15 01:09:10 +00:00
|
|
|
option(GLM_TEST_FORCE_PURE "Force 'pure' instructions" OFF)
|
|
|
|
|
|
|
|
if(GLM_TEST_FORCE_PURE)
|
|
|
|
add_definitions(-DGLM_FORCE_PURE)
|
2012-09-20 08:17:03 +00:00
|
|
|
|
2012-04-14 17:19:28 +00:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX)
|
2013-09-15 01:09:10 +00:00
|
|
|
add_definitions(-mfpmath=387)
|
|
|
|
elseif(MSVC)
|
|
|
|
add_definitions(/arch:IA32)
|
|
|
|
endif()
|
|
|
|
elseif(GLM_TEST_ENABLE_AVX2)
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX)
|
|
|
|
add_definitions(-mavx2)
|
|
|
|
elseif(GLM_USE_INTEL)
|
|
|
|
add_definitions(/QxAVX2)
|
|
|
|
elseif(MSVC)
|
|
|
|
add_definitions(/arch:AVX2)
|
|
|
|
endif()
|
|
|
|
elseif(GLM_TEST_ENABLE_AVX)
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX)
|
|
|
|
add_definitions(-mavx)
|
2013-01-31 23:45:24 +00:00
|
|
|
elseif(GLM_USE_INTEL)
|
|
|
|
add_definitions(/QxAVX)
|
2013-09-15 01:09:10 +00:00
|
|
|
elseif(MSVC)
|
2012-09-19 13:34:23 +00:00
|
|
|
add_definitions(/arch:AVX)
|
2013-09-15 01:09:10 +00:00
|
|
|
endif()
|
|
|
|
elseif(GLM_TEST_ENABLE_SSE3)
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX)
|
|
|
|
add_definitions(-msse3)
|
|
|
|
elseif(GLM_USE_INTEL)
|
|
|
|
add_definitions(/QxSSE3)
|
2012-09-19 13:34:23 +00:00
|
|
|
elseif(MSVC)
|
2013-12-18 17:45:02 +00:00
|
|
|
add_definitions(/arch:SSE2) # VC doesn't support /arch:SSE3
|
2012-04-14 17:19:28 +00:00
|
|
|
endif()
|
2013-09-15 01:09:10 +00:00
|
|
|
elseif(GLM_TEST_ENABLE_SSE2)
|
2012-04-14 17:19:28 +00:00
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX)
|
2013-09-15 01:09:10 +00:00
|
|
|
add_definitions(-msse2)
|
|
|
|
elseif(GLM_USE_INTEL)
|
|
|
|
add_definitions(/QxSSE2)
|
|
|
|
elseif(MSVC)
|
|
|
|
if(NOT CMAKE_CL_64)
|
|
|
|
add_definitions(/arch:SSE2)
|
|
|
|
endif()
|
2012-04-14 17:19:28 +00:00
|
|
|
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)
|
2012-10-09 18:36:02 +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
|
|
|
|
2014-04-15 09:54:03 +00:00
|
|
|
include_directories("${PROJECT_SOURCE_DIR}")
|
|
|
|
include_directories("${PROJECT_SOURCE_DIR}/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)
|
2014-04-15 09:26:28 +00:00
|
|
|
add_subdirectory(util)
|
2010-04-29 14:45:55 +00:00
|
|
|
|
2014-04-15 09:26:28 +00:00
|
|
|
install(DIRECTORY glm DESTINATION ${CMAKE_INSTALL_FULL_INCLUDEDIR})
|