10 lines
143 B
CMake
10 lines
143 B
CMake
file(GLOB items *)
|
|
|
|
foreach(item ${items})
|
|
if (NOT IS_DIRECTORY ${item})
|
|
continue()
|
|
endif ()
|
|
|
|
add_subdirectory(${item})
|
|
endforeach (item)
|