OSDN Git Service

[cmake] Include openmp with add_llvm_external_project
[android-x86/external-llvm.git] / projects / CMakeLists.txt
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.
4 file(GLOB entries *)
5 foreach(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) AND
10        (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/libcxxabi) AND
11        (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/libunwind) AND
12        (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/test-suite) AND
13        (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/parallel-libs) AND
14        (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/openmp))
15       add_subdirectory(${entry})
16     endif()
17   endif()
18 endforeach(entry)
19
20 # Also add in libc++ and compiler-rt trees if present (and we have
21 # a sufficiently recent version of CMake where required).
22 if(${LLVM_BUILD_RUNTIME})
23   # MSVC isn't quite working with libc++ yet, disable it until issues are
24   # fixed.
25   if(NOT MSVC)
26     # Add the projects in reverse order of their dependencies so that the
27     # dependent projects can see the target names of their dependencies.
28     add_llvm_external_project(libunwind)
29     add_llvm_external_project(libcxxabi)
30     add_llvm_external_project(libcxx)
31   endif()
32   if(NOT LLVM_BUILD_EXTERNAL_COMPILER_RT)
33     add_llvm_external_project(compiler-rt)
34   endif()
35 endif()
36
37 add_llvm_external_project(dragonegg)
38 add_llvm_external_project(parallel-libs)
39 add_llvm_external_project(openmp)