From: Yaron Keren Date: Tue, 4 Mar 2014 09:12:17 +0000 (+0000) Subject: We now require Visual C++ 2012 (MSVC_VERSION = 1700) or later to build LLVM. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0bb7cf3383d769e85f734162d30b74ef5bf0471d;p=clang We now require Visual C++ 2012 (MSVC_VERSION = 1700) or later to build LLVM. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@202804 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 38f10493dd..2d7bb6f540 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -473,14 +473,5 @@ if( CLANG_INCLUDE_DOCS ) add_subdirectory(docs) endif() -# Workaround for MSVS10 to avoid the Dialog Hell -# FIXME: This could be removed with future version of CMake. -if( CLANG_BUILT_STANDALONE AND MSVC_VERSION EQUAL 1600 ) - set(CLANG_SLN_FILENAME "${CMAKE_CURRENT_BINARY_DIR}/Clang.sln") - if( EXISTS "${CLANG_SLN_FILENAME}" ) - file(APPEND "${CLANG_SLN_FILENAME}" "\n# This should be regenerated!\n") - endif() -endif() - set(CLANG_ORDER_FILE "" CACHE FILEPATH "Order file to use when compiling clang in order to improve startup time.")