mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 04:31:47 +00:00
11 lines
259 B
CMake
11 lines
259 B
CMake
set(NAME glm-doc)
|
|
|
|
file(GLOB ROOT_CPP src/*.cpp)
|
|
file(GLOB ROOT_XML src/*.xml)
|
|
file(GLOB ROOT_XSL src/*.xsl)
|
|
|
|
source_group("XML Files" FILES ${ROOT_XML})
|
|
source_group("XSL Files" FILES ${ROOT_XSL})
|
|
|
|
add_executable(${NAME} ${ROOT_CPP} ${ROOT_XML} ${ROOT_XSL})
|