Do not use --std=c++14 for MSVC

MSVC does not need a special flag to specify the standard. Using --std=c++14
produces a warning, but compilation succeeds, so the old code did mistakenly
choose --std=c++14 for MSVC.
This commit is contained in:
Georg Baum 2016-07-02 12:42:04 +02:00
parent e49d59dafc
commit 987dd84461

View File

@ -40,12 +40,19 @@ else()
if (CYGWIN) if (CYGWIN)
set(CXX11_FLAG_CANDIDATES "--std=gnu++11") set(CXX11_FLAG_CANDIDATES "--std=gnu++11")
else() else()
set(CXX11_FLAG_CANDIDATES if (MSVC)
"--std=c++14" # MSVC does not have a general C++11 flag, one can only switch off
"--std=c++11" # MS extensions with /Za in general or by extension with /Zc.
"--std=gnu++11" # Use an empty flag to ensure that CXX11_STD_REGEX is correctly set.
"--std=gnu++0x" set(CXX11_FLAG_CANDIDATES "")
) else()
set(CXX11_FLAG_CANDIDATES
"--std=c++14"
"--std=c++11"
"--std=gnu++11"
"--std=gnu++0x"
)
endif()
endif() endif()
endif() endif()