Initial commit

This commit is contained in:
2025-12-19 20:08:22 +00:00
commit 2a30c0d77b
12 changed files with 444 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
macro(SubDirList curdir result)
file(GLOB children RELATIVE ${curdir} ${curdir}/*)
foreach(child ${children})
if(IS_DIRECTORY ${curdir}/${child})
list(APPEND ${result} ${child})
endif()
endforeach()
endmacro()