From: Martin Quinson Date: Tue, 28 Jul 2015 11:11:47 +0000 (+0200) Subject: ok, it wont work with MSVC X-Git-Tag: v3_12~353 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/4067f2a3e5e4c763a3063c3e393d543f0bf46cdc ok, it wont work with MSVC --- 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