From 3a9c490531556c1bad6e1f6e8cd7cd7f026b8437 Mon Sep 17 00:00:00 2001 From: Ulysse Martin Date: Sat, 24 Dec 2016 10:37:10 -0700 Subject: [PATCH] [MSVC] Fix test for C++11 support for vc2015/2017 based on D2432 by Ulysse Martin (youle) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8055f4fd3e9..6bb1792fef7 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")