You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kamailio/utils/CMakeLists.txt

15 lines
328 B

file(
GLOB children
RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
LIST_DIRECTORIES true
*
)
foreach(child ${children})
if(IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/${child}
AND EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${child}/CMakeLists.txt
)
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/${child})
endif()
endforeach()