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.
32 lines
1.1 KiB
32 lines
1.1 KiB
set(NAME gli_dummy) |
|
|
|
file(GLOB ROOT_SOURCE *.cpp) |
|
file(GLOB ROOT_INLINE *.inl) |
|
file(GLOB ROOT_HEADER *.hpp) |
|
file(GLOB ROOT_TEXT ../*.txt) |
|
file(GLOB ROOT_MD ../*.md) |
|
file(GLOB ROOT_KMG ../doc/spec/*.html) |
|
|
|
file(GLOB_RECURSE CORE_SOURCE ./core/*.cpp) |
|
file(GLOB_RECURSE CORE_INLINE ./core/*.inl) |
|
file(GLOB_RECURSE CORE_HEADER ./core/*.hpp) |
|
|
|
file(GLOB_RECURSE GTX_SOURCE ./gtx/*.cpp) |
|
file(GLOB_RECURSE GTX_INLINE ./gtx/*.inl) |
|
file(GLOB_RECURSE GTX_HEADER ./gtx/*.hpp) |
|
|
|
source_group("KMG Spec" FILES ${ROOT_KMG}) |
|
source_group("Text Files" FILES ${ROOT_TEXT} ${ROOT_MD}) |
|
source_group("Core Files" FILES ${CORE_SOURCE}) |
|
source_group("Core Files" FILES ${CORE_INLINE}) |
|
source_group("Core Files" FILES ${CORE_HEADER}) |
|
source_group("GTX Files" FILES ${GTX_SOURCE}) |
|
source_group("GTX Files" FILES ${GTX_INLINE}) |
|
source_group("GTX Files" FILES ${GTX_HEADER}) |
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..) |
|
|
|
add_executable(${NAME} ${ROOT_TEXT} ${ROOT_MD} ${ROOT_KMG} |
|
${ROOT_SOURCE} ${ROOT_INLINE} ${ROOT_HEADER} |
|
${CORE_SOURCE} ${CORE_INLINE} ${CORE_HEADER} |
|
${GTX_SOURCE} ${GTX_INLINE} ${GTX_HEADER})
|
|
|