From 276abc5d4aa26c4a03708bcc3338c6e2ece96584 Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Wed, 27 Jun 2012 00:30:08 +0000 Subject: Exclude both libcxx and compiler-rt until we get their CMake builds suitable for building as a whole-project. llvm-svn: 159241 --- llvm/projects/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'llvm/projects') diff --git a/llvm/projects/CMakeLists.txt b/llvm/projects/CMakeLists.txt index 415530e3323..dac637335bd 100644 --- a/llvm/projects/CMakeLists.txt +++ b/llvm/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() -- cgit v1.2.3