diff options
author | Pirama Arumuga Nainar <pirama@google.com> | 2017-03-07 18:54:17 +0000 |
---|---|---|
committer | Pirama Arumuga Nainar <pirama@google.com> | 2017-03-07 18:54:17 +0000 |
commit | 70a3671222600305e27f92c03a21ccea39624dca (patch) | |
tree | a65f77fb7c013ed92725c75afc26003a2d105cd0 | |
parent | fe53fdb87321a5c8c6fe56ce4f2e29d1e1928fb4 (diff) | |
download | bcm5719-llvm-70a3671222600305e27f92c03a21ccea39624dca.tar.gz bcm5719-llvm-70a3671222600305e27f92c03a21ccea39624dca.zip |
[cmake] Include openmp with add_llvm_external_project
Summary:
Include projects/openmp into the build using add_llvm_external_project
instead of add_subdirectory. This creates an option
LLVM_TOOL_OPENMP_BUILD that selects whether this project gets included
in an in-tree build.
Reviewers: beanz, AndreyChurbanov, jlpeyton
Subscribers: srhines, openmp-commits, llvm-commits, mgorny
Differential Revision: https://reviews.llvm.org/D30470
llvm-svn: 297185
-rw-r--r-- | llvm/projects/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/projects/CMakeLists.txt b/llvm/projects/CMakeLists.txt index 2122665c0dc..79d8fc7df99 100644 --- a/llvm/projects/CMakeLists.txt +++ b/llvm/projects/CMakeLists.txt @@ -10,7 +10,8 @@ foreach(entry ${entries}) (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/libcxxabi) AND (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/libunwind) AND (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/test-suite) AND - (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/parallel-libs)) + (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/parallel-libs) AND + (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/openmp)) add_subdirectory(${entry}) endif() endif() @@ -35,3 +36,4 @@ endif() add_llvm_external_project(dragonegg) add_llvm_external_project(parallel-libs) +add_llvm_external_project(openmp) |