2009-03-06 01:16:52 +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)
|
2012-06-27 00:30:08 +00:00
|
|
|
if((NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/compiler-rt) AND
|
2014-01-24 12:53:08 +00:00
|
|
|
(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/dragonegg) AND
|
2014-07-25 10:27:40 +00:00
|
|
|
(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/libcxx) AND
|
|
|
|
(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/libcxxabi))
|
2010-01-22 18:14:27 +00:00
|
|
|
add_subdirectory(${entry})
|
|
|
|
endif()
|
2009-03-06 01:16:52 +00:00
|
|
|
endif()
|
|
|
|
endforeach(entry)
|
2012-08-29 00:38:02 +00:00
|
|
|
|
2013-09-28 18:17:10 +00: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 14:43:07 +00:00
|
|
|
if(${LLVM_BUILD_RUNTIME})
|
2013-10-02 06:25:57 +00:00
|
|
|
# MSVC isn't quite working with libc++ yet, disable it until issues are
|
|
|
|
# fixed.
|
|
|
|
if(NOT MSVC)
|
2015-03-04 01:16:43 +00:00
|
|
|
# libc++ uses the libc++abi target names so libc++abi should be added
|
|
|
|
# first.
|
2014-07-25 10:27:40 +00:00
|
|
|
add_llvm_external_project(libcxxabi)
|
2015-03-04 01:16:43 +00:00
|
|
|
add_llvm_external_project(libcxx)
|
2013-10-02 06:25:57 +00:00
|
|
|
endif()
|
2014-02-27 08:59:01 +00:00
|
|
|
if(NOT LLVM_BUILD_EXTERNAL_COMPILER_RT)
|
|
|
|
add_llvm_external_project(compiler-rt)
|
|
|
|
endif()
|
2012-08-29 00:38:02 +00:00
|
|
|
endif()
|
2014-01-24 12:53:08 +00:00
|
|
|
|
|
|
|
add_llvm_external_project(dragonegg)
|