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.
52 lines
1.6 KiB
52 lines
1.6 KiB
cmake_minimum_required(VERSION 2.6 FATAL_ERROR) |
|
cmake_policy(VERSION 2.6) |
|
|
|
project(glm) |
|
|
|
set(NAME glm-test) |
|
|
|
file(GLOB ROOT_SOURCE *.cpp) |
|
file(GLOB ROOT_INLINE *.inl) |
|
file(GLOB ROOT_HEADER *.hpp) |
|
|
|
file(GLOB_RECURSE CORE_SOURCE ./core/*.cpp) |
|
file(GLOB_RECURSE CORE_INLINE ./core/*.inl) |
|
file(GLOB_RECURSE CORE_HEADER ./core/*.hpp) |
|
|
|
file(GLOB_RECURSE GTC_SOURCE ./gtc/*.cpp) |
|
file(GLOB_RECURSE GTC_INLINE ./gtc/*.inl) |
|
file(GLOB_RECURSE GTC_HEADER ./gtc/*.hpp) |
|
|
|
file(GLOB_RECURSE GTX_SOURCE ./gtx/*.cpp) |
|
file(GLOB_RECURSE GTX_INLINE ./gtx/*.inl) |
|
file(GLOB_RECURSE GTX_HEADER ./gtx/*.hpp) |
|
|
|
file(GLOB_RECURSE IMG_SOURCE ./img/*.cpp) |
|
file(GLOB_RECURSE IMG_INLINE ./img/*.inl) |
|
file(GLOB_RECURSE IMG_HEADER ./img/*.hpp) |
|
|
|
source_group("Core Files" FILES ${CORE_SOURCE}) |
|
source_group("Core Files" FILES ${CORE_INLINE}) |
|
source_group("Core Files" FILES ${CORE_HEADER}) |
|
source_group("GTC Files" FILES ${GTC_SOURCE}) |
|
source_group("GTC Files" FILES ${GTC_INLINE}) |
|
source_group("GTC Files" FILES ${GTC_HEADER}) |
|
source_group("GTX Files" FILES ${GTX_SOURCE}) |
|
source_group("GTX Files" FILES ${GTX_INLINE}) |
|
source_group("GTX Files" FILES ${GTX_HEADER}) |
|
source_group("IMG Files" FILES ${IMG_SOURCE}) |
|
source_group("IMG Files" FILES ${IMG_INLINE}) |
|
source_group("IMG Files" FILES ${IMG_HEADER}) |
|
|
|
include_directories(..) |
|
|
|
|
|
|
|
add_executable(${NAME} |
|
${ROOT_SOURCE} ${ROOT_INLINE} ${ROOT_HEADER} |
|
${CORE_SOURCE} ${CORE_INLINE} ${CORE_HEADER} |
|
${GTC_SOURCE} ${GTC_INLINE} ${GTC_HEADER} |
|
${GTX_SOURCE} ${GTX_INLINE} ${GTX_HEADER} |
|
${IMG_SOURCE} ${IMG_INLINE} ${IMG_HEADER}) |
|
|
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS)
|
|
|