diff options
author | Justin Lebar <jlebar@google.com> | 2016-09-09 21:34:12 +0000 |
---|---|---|
committer | Justin Lebar <jlebar@google.com> | 2016-09-09 21:34:12 +0000 |
commit | d9c5bfba17c2e6c12292ae25b2914e4142f91687 (patch) | |
tree | 8013413fdcea8a94443449b2727eb3a68a595905 /projects | |
parent | 65ddbeccd7580f29bc5183b584a9f9077257f090 (diff) |
Enable in-tree builds of parallel-libs.
Summary:
parallel-libs needs its own changes to make this work; these are just
the LLVM changes.
Reviewers: jhen
Subscribers: llvm-commits, beanz, jprice
Differential Revision: https://reviews.llvm.org/D24402
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@281097 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'projects')
-rw-r--r-- | projects/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/projects/CMakeLists.txt b/projects/CMakeLists.txt index 4839dd39670..82fd6c8c9c7 100644 --- a/projects/CMakeLists.txt +++ b/projects/CMakeLists.txt @@ -9,7 +9,8 @@ foreach(entry ${entries}) (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/libcxx) AND (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)) + (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/test-suite) AND + (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/parallel-libs)) add_subdirectory(${entry}) endif() endif() @@ -33,3 +34,4 @@ if(${LLVM_BUILD_RUNTIME}) endif() add_llvm_external_project(dragonegg) +add_llvm_external_project(parallel-libs) |