2009-03-06 02:16:52 +01: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)
|
2012-06-27 02:30:08 +02:00
|
|
|
if((NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/compiler-rt) AND
|
2014-01-24 13:53:08 +01:00
|
|
|
(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/dragonegg) AND
|
2012-06-27 02:30:08 +02:00
|
|
|
(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/libcxx))
|
2010-01-22 19:14:27 +01:00
|
|
|
add_subdirectory(${entry})
|
|
|
|
endif()
|
2009-03-06 02:16:52 +01:00
|
|
|
endif()
|
|
|
|
endforeach(entry)
|
2012-08-29 02:38:02 +02:00
|
|
|
|
2013-09-28 20:17:10 +02:00
|
|
|
# Also add in libc++ and compiler-rt trees if present (and we have
|
|
|
|
# a sufficiently recent version of CMake where required).
|
2013-03-05 15:43:07 +01:00
|
|
|
if(${LLVM_BUILD_RUNTIME})
|
2013-10-02 08:25:57 +02:00
|
|
|
# MSVC isn't quite working with libc++ yet, disable it until issues are
|
|
|
|
# fixed.
|
|
|
|
if(NOT MSVC)
|
|
|
|
add_llvm_external_project(libcxx)
|
|
|
|
endif()
|
2014-02-27 09:59:01 +01:00
|
|
|
if(NOT LLVM_BUILD_EXTERNAL_COMPILER_RT)
|
|
|
|
add_llvm_external_project(compiler-rt)
|
|
|
|
endif()
|
2012-08-29 02:38:02 +02:00
|
|
|
endif()
|
2014-01-24 13:53:08 +01:00
|
|
|
|
|
|
|
add_llvm_external_project(dragonegg)
|