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
|
2015-04-25 01:47:39 +00:00
|
|
|
(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/libcxxabi) AND
|
2015-10-28 18:36:56 +00:00
|
|
|
(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/libunwind) AND
|
2016-09-09 21:34:12 +00:00
|
|
|
(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/test-suite) AND
|
2017-03-07 18:54:17 +00:00
|
|
|
(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/parallel-libs) AND
|
2017-12-12 17:06:08 +00:00
|
|
|
(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/openmp) AND
|
|
|
|
(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/debuginfo-tests))
|
2018-12-04 00:12:03 +00:00
|
|
|
get_filename_component(entry_name "${entry}" NAME)
|
|
|
|
add_llvm_external_project(${entry_name})
|
2010-01-22 18:14:27 +00:00
|
|
|
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.
|
2017-05-11 01:44:30 +00:00
|
|
|
# FIXME: LLVM_FORCE_BUILD_RUNTIME is currently used by libc++ to force
|
|
|
|
# enable the in-tree build when targeting clang-cl.
|
|
|
|
if(NOT MSVC OR LLVM_FORCE_BUILD_RUNTIME)
|
2016-10-09 20:38:29 +00:00
|
|
|
# Add the projects in reverse order of their dependencies so that the
|
|
|
|
# dependent projects can see the target names of their dependencies.
|
|
|
|
add_llvm_external_project(libunwind)
|
2019-07-19 18:52:46 +00:00
|
|
|
add_llvm_external_project(pstl)
|
2019-10-04 17:30:54 +00:00
|
|
|
add_llvm_external_project(libc)
|
2019-08-05 18:29:14 +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)
|
2016-09-09 21:34:12 +00:00
|
|
|
add_llvm_external_project(parallel-libs)
|
2017-03-07 18:54:17 +00:00
|
|
|
add_llvm_external_project(openmp)
|
2017-12-12 17:06:08 +00:00
|
|
|
|
|
|
|
if(LLVM_INCLUDE_TESTS)
|
|
|
|
add_llvm_external_project(debuginfo-tests)
|
|
|
|
endif()
|