diff options
author | Shoaib Meenai <smeenai@fb.com> | 2019-02-06 21:49:47 +0000 |
---|---|---|
committer | Shoaib Meenai <smeenai@fb.com> | 2019-02-06 21:49:47 +0000 |
commit | 351314a14f70246f1e873fe5bc04cbd70cbd6d92 (patch) | |
tree | bed317e54ec4b996483e19aa27f369576f415dfa | |
parent | 6c27a06302c234871b137d80c3c157f251333695 (diff) | |
download | bcm5719-llvm-351314a14f70246f1e873fe5bc04cbd70cbd6d92.tar.gz bcm5719-llvm-351314a14f70246f1e873fe5bc04cbd70cbd6d92.zip |
[cmake] Add all subprojects to LLVM_ALL_PROJECTS
Make LLVM_ALL_PROJECTS reflect all top-level directories in the monorepo
rather than an arbitrary subset. clang-tools-extra is technically
unnecessary since it gets enabled by clang, but having it there for
consistency shouldn't hurt either.
Differential Revision: https://reviews.llvm.org/D57843
llvm-svn: 353346
-rw-r--r-- | llvm/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/CMakeLists.txt b/llvm/CMakeLists.txt index 87b5d0946e0..31eaf6679d0 100644 --- a/llvm/CMakeLists.txt +++ b/llvm/CMakeLists.txt @@ -104,7 +104,7 @@ endif() # LLVM_EXTERNAL_${project}_SOURCE_DIR using LLVM_ALL_PROJECTS # This allows an easy way of setting up a build directory for llvm and another # one for llvm+clang+... using the same sources. -set(LLVM_ALL_PROJECTS "clang;libcxx;libcxxabi;libunwind;lldb;compiler-rt;lld;polly;debuginfo-tests;openmp") +set(LLVM_ALL_PROJECTS "clang;clang-tools-extra;compiler-rt;debuginfo-tests;libclc;libcxx;libcxxabi;libunwind;lld;lldb;llgo;llvm;openmp;parallel-libs;polly;pstl") set(LLVM_ENABLE_PROJECTS "" CACHE STRING "Semicolon-separated list of projects to build (${LLVM_ALL_PROJECTS}), or \"all\".") if( LLVM_ENABLE_PROJECTS STREQUAL "all" ) |