Files
esDashboard/tools/cmake/SubDirList.cmake
T
2025-12-19 20:08:22 +00:00

9 lines
250 B
CMake

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()