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
|
2014-07-25 12:27:40 +02:00
|
|
|
(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/libcxx) AND
|
2015-04-25 03:47:39 +02:00
|
|
|
(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/libcxxabi) AND
|
2015-10-28 19:36:56 +01:00
|
|
|
(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/libunwind) AND
|
2016-09-09 23:34:12 +02:00
|
|
|
(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/test-suite) AND
|
2017-03-07 19:54:17 +01:00
|
|
|
(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/parallel-libs) AND
|
2017-12-12 18:06:08 +01:00
|
|
|
(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/openmp) AND
|
2021-02-08 16:40:55 +01:00
|
|
|
(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/cross-project-tests))
|
2018-12-04 01:12:03 +01:00
|
|
|
get_filename_component(entry_name "${entry}" NAME)
|
|
|
|
add_llvm_external_project(${entry_name})
|
2010-01-22 19:14:27 +01:00
|
|
|
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.
|
2017-05-11 03:44:30 +02: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 22:38:29 +02: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 20:52:46 +02:00
|
|
|
add_llvm_external_project(pstl)
|
2019-10-04 19:30:54 +02:00
|
|
|
add_llvm_external_project(libc)
|
2019-08-05 20:29:14 +02:00
|
|
|
add_llvm_external_project(libcxxabi)
|
2015-03-04 02:16:43 +01:00
|
|
|
add_llvm_external_project(libcxx)
|
2013-10-02 08:25:57 +02:00
|
|
|
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)
|
2016-09-09 23:34:12 +02:00
|
|
|
add_llvm_external_project(parallel-libs)
|
2017-03-07 19:54:17 +01:00
|
|
|
add_llvm_external_project(openmp)
|
2017-12-12 18:06:08 +01:00
|
|
|
|
|
|
|
if(LLVM_INCLUDE_TESTS)
|
2021-02-08 16:40:55 +01:00
|
|
|
add_llvm_external_project(cross-project-tests)
|
2017-12-12 18:06:08 +01:00
|
|
|
endif()
|