diff options
author | Chris Bieneman <beanz@apple.com> | 2015-10-28 18:36:56 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2015-10-28 18:36:56 +0000 |
commit | ca1d2209c4f35b86ed95330c06bfeef0b7191c5f (patch) | |
tree | 4fcb0827b4e33e2ae4356281f1c17f644b0f54cc /llvm/projects | |
parent | acd0a5cfba993c03c005aea8bf7230bc071e6f7e (diff) | |
download | bcm5719-llvm-ca1d2209c4f35b86ed95330c06bfeef0b7191c5f.tar.gz bcm5719-llvm-ca1d2209c4f35b86ed95330c06bfeef0b7191c5f.zip |
[CMake] Disable adding the test suite as a projects subdirectory
This will never work as an add_subdirectory call, so we should just make sure it doesn't happen. To do this properly we'll need to add it under clang similar to the external compiler-rt.
llvm-svn: 251543
Diffstat (limited to 'llvm/projects')
-rw-r--r-- | llvm/projects/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/projects/CMakeLists.txt b/llvm/projects/CMakeLists.txt index d3b2fc37af7..4839dd39670 100644 --- a/llvm/projects/CMakeLists.txt +++ b/llvm/projects/CMakeLists.txt @@ -8,7 +8,8 @@ foreach(entry ${entries}) (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/dragonegg) AND (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)) + (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/libunwind) AND + (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/test-suite)) add_subdirectory(${entry}) endif() endif() |