glm/CMakeLists.txt

31 lines
725 B
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-15 17:25:21 +00:00
enable_testing()
2010-04-29 10:56:52 +00:00
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
add_definitions(-pedantic)
2011-01-11 16:23:45 +00:00
#add_definitions(-S)
2011-01-19 12:48:30 +00:00
#add_definitions(-s)
add_definitions(-msse2)
2011-01-19 12:48:30 +00:00
#add_definitions(-m32)
#add_definitions(-mfpmath=387)
#add_definitions(-ffast-math)
#add_definitions(-O3)
2010-04-29 10:56:52 +00:00
2010-12-17 01:33:17 +00:00
include_directories(".")
2011-02-15 17:25:21 +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-17 11:45:17 +00:00
option(GLM_TEST_MODE "GLM test" OFF)
if(NOT GLM_TEST_MODE)
2011-02-17 11:59:43 +00:00
message(FATAL_ERROR "GLM is a header only library, no need to build it. Set the option GLM_TEST_MODE with ON to build and run the test bench")
2011-02-17 11:45:17 +00:00
endif()
2011-02-15 17:25:21 +00:00
install( DIRECTORY glm DESTINATION include )