mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 04:31:47 +00:00
14 lines
227 B
CMake
14 lines
227 B
CMake
cmake_minimum_required(VERSION 2.6 FATAL_ERROR)
|
|
cmake_policy(VERSION 2.6)
|
|
|
|
project(glm)
|
|
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
|
|
|
add_subdirectory(glm)
|
|
add_subdirectory(doc)
|
|
add_subdirectory(sample)
|
|
add_subdirectory(test)
|
|
|
|
|