You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
14 lines
307 B
14 lines
307 B
cmake_minimum_required(VERSION 2.6 FATAL_ERROR) |
|
cmake_policy(VERSION 2.6) |
|
|
|
project(glm) |
|
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS) |
|
#add_definitions(-mfpmath=sse) |
|
#add_definitions(-msse3) |
|
#add_definitions(-Wextra) |
|
|
|
add_subdirectory(glm) |
|
add_subdirectory(doc) |
|
add_subdirectory(sample) |
|
add_subdirectory(test)
|
|
|