mirror of
https://github.com/g-truc/glm.git
synced 2025-04-05 05:25:02 +00:00
15 lines
229 B
CMake
15 lines
229 B
CMake
cmake_minimum_required(VERSION 2.6 FATAL_ERROR)
|
|
cmake_policy(VERSION 2.6)
|
|
|
|
project(glm)
|
|
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
|
|
|
include_directories(".")
|
|
|
|
add_subdirectory(glm)
|
|
add_subdirectory(test)
|
|
add_subdirectory(doc)
|
|
|
|
|
|
|