From 4067f2a3e5e4c763a3063c3e393d543f0bf46cdc Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Tue, 28 Jul 2015 13:11:47 +0200 Subject: [PATCH] ok, it wont work with MSVC --- CMakeLists.txt | 22 +++++++--------------- 1 file changed, 7 insertions(+), 15 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d27ec86ed8..b1deaac096 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,13 +34,9 @@ CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11) if(COMPILER_SUPPORTS_CXX11) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") else() - if(MSVC) - message("MSVC is believed to have a sufficient C++11 support. Not sure") - else() - message(FATAL_ERROR - "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. " - "Please use a decent C++ compiler.") - endif() + message(FATAL_ERROR + "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. " + "Please use a decent C++ compiler.") endif() ### And we need C11 standard, too @@ -49,14 +45,10 @@ CHECK_C_COMPILER_FLAG("-std=gnu11" COMPILER_SUPPORTS_C11) if(COMPILER_SUPPORTS_C11) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu11") else() - if(MSVC) - message("MSVC is believed to have a sufficient C++11 support. Not sure") - else() - message(FATAL_ERROR - "The compiler ${CMAKE_C_COMPILER} has no C11 support. " - "Please use a decent C compiler " - "(note that c++11 support of ${CMAKE_CXX_COMPILER} seems ok).") - endif() + message(FATAL_ERROR + "The compiler ${CMAKE_C_COMPILER} has no C11 support. " + "Please use a decent C compiler " + "(note that c++11 support of ${CMAKE_CXX_COMPILER} seems ok).") endif() ### SMPI vs. Fortran -- 2.20.1