Commit: 3a9c490531556c1bad6e1f6e8cd7cd7f026b8437
Author: Ulysse Martin
Date:   Sat Dec 24 10:37:10 2016 -0700
Branches: master
https://developer.blender.org/rB3a9c490531556c1bad6e1f6e8cd7cd7f026b8437

[MSVC] Fix test for C++11 support for vc2015/2017 based on D2432 by Ulysse 
Martin (youle)

===================================================================

M       CMakeLists.txt

===================================================================

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8055f4f..6bb1792 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1573,7 +1573,7 @@ if(WITH_CXX11)
        if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_C_COMPILER_ID MATCHES "Clang")
                # TODO(sergey): Do we want c++11 or gnu-c++11 here?
                set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
-       elseif(MSVC12)
+       elseif(MSVC)
                # Nothing special is needed, C++11 features are available by 
default.
        else()
                message(FATAL_ERROR "Compiler ${CMAKE_C_COMPILER_ID} is not 
supported for C++11 build yet")

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to