mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-04 00:31:54 +00:00
CMake: Don't try to descend into projects/compiler-rt, it doesn't work.
llvm-svn: 94187
This commit is contained in:
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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user