forked from OSchip/llvm-project
CMake: Don't try to descend into projects/compiler-rt, it doesn't work.
llvm-svn: 94187
This commit is contained in:
parent
b33a43b521
commit
e0b374b5ef
|
@ -4,6 +4,8 @@
|
||||||
file(GLOB entries *)
|
file(GLOB entries *)
|
||||||
foreach(entry ${entries})
|
foreach(entry ${entries})
|
||||||
if(IS_DIRECTORY ${entry} AND EXISTS ${entry}/CMakeLists.txt)
|
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()
|
endif()
|
||||||
endforeach(entry)
|
endforeach(entry)
|
||||||
|
|
Loading…
Reference in New Issue