diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-06-27 00:30:08 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-06-27 00:30:08 +0000 |
commit | eb2dea2c3c94bb3edbf3ff0a018f6ca58e9475d9 (patch) | |
tree | 8579f4421ae38832e5e1707362bbc9fa302e82c5 /projects | |
parent | 4782a6e06ad4c6227831b70bb76165bc7b14bff3 (diff) |
Exclude both libcxx and compiler-rt until we get their CMake builds
suitable for building as a whole-project.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159241 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'projects')
-rw-r--r-- | projects/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/projects/CMakeLists.txt b/projects/CMakeLists.txt index 415530e332..dac637335b 100644 --- a/projects/CMakeLists.txt +++ b/projects/CMakeLists.txt @@ -4,7 +4,8 @@ file(GLOB entries *) foreach(entry ${entries}) if(IS_DIRECTORY ${entry} AND EXISTS ${entry}/CMakeLists.txt) - if(NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/compiler-rt) + if((NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/compiler-rt) AND + (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/libcxx)) add_subdirectory(${entry}) endif() endif() |