mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-08 19:26:45 +00:00
9 lines
260 B
CMake
9 lines
260 B
CMake
|
|
# Roams all subdirs for CMakeLists.txt
|
|
list_subdirectories(SUBDIRS ${CMAKE_CURRENT_SOURCE_DIR})
|
|
foreach (SUBDIR ${SUBDIRS})
|
|
if (EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${SUBDIR}/CMakeLists.txt")
|
|
add_subdirectory (${SUBDIR})
|
|
endif ()
|
|
endforeach ()
|