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.
12 lines
365 B
12 lines
365 B
set(NAME glm-doc) |
|
|
|
file(GLOB ROOT_TXT *.doxy ../*.txt ./theme/*.css) |
|
file(GLOB ROOT_CPP src/*.cpp) |
|
file(GLOB ROOT_XML src/*.xml) |
|
file(GLOB ROOT_XSL src/*.xsl) |
|
|
|
source_group("TXT Files" FILES ${ROOT_TXT}) |
|
source_group("XML Files" FILES ${ROOT_XML}) |
|
source_group("XSL Files" FILES ${ROOT_XSL}) |
|
|
|
add_executable(${NAME} ${ROOT_CPP} ${ROOT_XML} ${ROOT_XSL} ${ROOT_TXT})
|
|
|