X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=projects%2FCMakeLists.txt;h=d3b2fc37af799e777f1a49275369d84990a2b87a;hb=2b08044287e18cdbe04cc7f839246db4089b3b3f;hp=de06b78423c575d3cf2a05a9a21060ed5a32482b;hpb=2f101e83b29700b89f1ba3863288de1db0840c90;p=oota-llvm.git diff --git a/projects/CMakeLists.txt b/projects/CMakeLists.txt index de06b78423c..d3b2fc37af7 100644 --- a/projects/CMakeLists.txt +++ b/projects/CMakeLists.txt @@ -5,7 +5,10 @@ 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) AND - (NOT ${entry} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR}/libcxx)) + (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)) add_subdirectory(${entry}) endif() endif() @@ -14,10 +17,18 @@ endforeach(entry) # Also add in libc++ and compiler-rt trees if present (and we have # a sufficiently recent version of CMake where required). if(${LLVM_BUILD_RUNTIME}) - add_llvm_external_project(libcxx) - if(${CMAKE_VERSION} VERSION_GREATER 2.8.7) + # MSVC isn't quite working with libc++ yet, disable it until issues are + # fixed. + if(NOT MSVC) + # libc++ uses the libc++abi target names so libc++abi should be added + # first. + add_llvm_external_project(libcxxabi) + add_llvm_external_project(libcxx) + add_llvm_external_project(libunwind) + endif() + if(NOT LLVM_BUILD_EXTERNAL_COMPILER_RT) add_llvm_external_project(compiler-rt) - else() - message(WARNING "Can't build compiler-rt, CMake 2.8.8 required!") endif() endif() + +add_llvm_external_project(dragonegg)