2009-06-02 17:52:33 +00: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-16 09:30:23 +00:00
|
|
|
if(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/compiler-rt)
|
2010-01-23 11:09:33 +00:00
|
|
|
add_subdirectory(${entry})
|
|
|
|
endif()
|
2009-06-02 17:52:33 +00:00
|
|
|
endif()
|
|
|
|
endforeach(entry)
|