2009-03-06 09:16:52 +08:00
|
|
|
# Discover the projects that use CMake in the subdirectories.
|
|
|
|
# Note that explicit cmake invocation is required every time a new project is
|
|
|
|
# added or removed.
|
|
|
|
file(GLOB entries *)
|
|
|
|
foreach(entry ${entries})
|
|
|
|
if(IS_DIRECTORY ${entry} AND EXISTS ${entry}/CMakeLists.txt)
|
2010-02-15 23:17:05 +08:00
|
|
|
if(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/compiler-rt)
|
2010-01-23 02:14:27 +08:00
|
|
|
add_subdirectory(${entry})
|
|
|
|
endif()
|
2009-03-06 09:16:52 +08:00
|
|
|
endif()
|
|
|
|
endforeach(entry)
|