diff options
author | Brad King <brad.king@kitware.com> | 2016-11-30 20:25:01 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-12-02 16:22:46 (GMT) |
commit | ae1a6815b6e2c0a45df51e994b75f9005e1794fe (patch) | |
tree | c8ccf890ced342e9287c8115ac525d062cb6ce0b /Modules/CMakeCXXCompilerId.cpp.in | |
parent | 684e4d205d64ff8b98c00a1d6a358bffbf509c62 (diff) | |
download | CMake-ae1a6815b6e2c0a45df51e994b75f9005e1794fe.zip CMake-ae1a6815b6e2c0a45df51e994b75f9005e1794fe.tar.gz CMake-ae1a6815b6e2c0a45df51e994b75f9005e1794fe.tar.bz2 |
Features: Add infrastructure for C++ 17 language standard
Issue: #16468
Diffstat (limited to 'Modules/CMakeCXXCompilerId.cpp.in')
-rw-r--r-- | Modules/CMakeCXXCompilerId.cpp.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Modules/CMakeCXXCompilerId.cpp.in b/Modules/CMakeCXXCompilerId.cpp.in index 3e5c0fc..9aa096d 100644 --- a/Modules/CMakeCXXCompilerId.cpp.in +++ b/Modules/CMakeCXXCompilerId.cpp.in @@ -28,7 +28,9 @@ char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; @CMAKE_CXX_COMPILER_ID_ERROR_FOR_TEST@ const char* info_language_dialect_default = "INFO" ":" "dialect_default[" -#if __cplusplus >= 201402L +#if __cplusplus > 201402L + "17" +#elif __cplusplus >= 201402L "14" #elif __cplusplus >= 201103L "11" |