glm/CMakeLists.txt

20 lines
325 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)
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
2011-01-11 16:23:45 +00:00
#add_definitions(-S)
add_definitions(-msse2)
2011-01-11 16:32:41 +00:00
add_definitions(-mfpmath=sse)
2011-01-11 16:23:45 +00:00
add_definitions(-O3)
2010-04-29 10:56:52 +00:00
2010-12-17 01:33:17 +00:00
include_directories(".")
2010-04-29 10:56:52 +00:00
add_subdirectory(glm)
2010-12-17 01:33:17 +00:00
add_subdirectory(test)
2010-04-29 10:56:52 +00:00
add_subdirectory(doc)
2010-04-29 14:45:55 +00:00
2010-04-29 10:56:52 +00:00