• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Discover the projects that use CMake in the subdirectories.
2# Note that explicit cmake invocation is required every time a new project is
3# added or removed.
4file(GLOB entries *)
5foreach(entry ${entries})
6  if(IS_DIRECTORY ${entry} AND EXISTS ${entry}/CMakeLists.txt)
7    if((NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/compiler-rt) AND
8       (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/dragonegg) AND
9       (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/libcxx))
10      add_subdirectory(${entry})
11    endif()
12  endif()
13endforeach(entry)
14
15# Also add in libc++ and compiler-rt trees if present (and we have
16# a sufficiently recent version of CMake where required).
17if(${LLVM_BUILD_RUNTIME})
18  # MSVC isn't quite working with libc++ yet, disable it until issues are
19  # fixed.
20  if(NOT MSVC)
21    add_llvm_external_project(libcxx)
22  endif()
23  if(NOT LLVM_BUILD_EXTERNAL_COMPILER_RT)
24    add_llvm_external_project(compiler-rt)
25  endif()
26endif()
27
28add_llvm_external_project(dragonegg)
29