CMake: Don't try to descend into projects/compiler-rt, it doesn't work.

llvm-svn: 94187
This commit is contained in:
Daniel Dunbar 2010-01-22 18:14:27 +00:00
parent 856d040f58
commit fa77ff20e6

@ -4,6 +4,8 @@
file(GLOB entries *)
foreach(entry ${entries})
if(IS_DIRECTORY ${entry} AND EXISTS ${entry}/CMakeLists.txt)
add_subdirectory(${entry})
if(NOT (${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/compiler-rt))
add_subdirectory(${entry})
endif()
endif()
endforeach(entry)