diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-03-18 11:53:01 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-04-08 09:05:54 (GMT) |
commit | 91289312fa9da0807b5c59a78de2c5ad21d6cda1 (patch) | |
tree | 0ab65d9f39964c899414ae5f08c54fe829206fdc /Modules | |
parent | 10f33eee1dfefa9e5a2ee5cf4946095bf08b19bc (diff) | |
download | CMake-91289312fa9da0807b5c59a78de2c5ad21d6cda1.zip CMake-91289312fa9da0807b5c59a78de2c5ad21d6cda1.tar.gz CMake-91289312fa9da0807b5c59a78de2c5ad21d6cda1.tar.bz2 |
Features: Add cxx_constexpr.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/Compiler/GNU-CXX-FeatureTests.cmake | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/Compiler/GNU-CXX-FeatureTests.cmake b/Modules/Compiler/GNU-CXX-FeatureTests.cmake index 6baa463..5321eda 100644 --- a/Modules/Compiler/GNU-CXX-FeatureTests.cmake +++ b/Modules/Compiler/GNU-CXX-FeatureTests.cmake @@ -10,6 +10,9 @@ set(_cmake_feature_test_cxx_delegating_constructors "${GNU47_CXX11}") # support -std=c++11. Prior to that, support for C++11 features is technically # experiemental and possibly incomplete (see for example the note below about # cxx_variadic_template_template_parameters) +# TODO: Should be supported by GNU 4.6 +set(GNU46_CXX11 "${_oldestSupported} && __cplusplus >= 201103L") +set(_cmake_feature_test_cxx_constexpr "${GNU46_CXX11}") # TODO: Should be supported by GNU 4.4 set(GNU44_CXX11 "${_oldestSupported} && __cplusplus >= 201103L") set(_cmake_feature_test_cxx_auto_type "${GNU44_CXX11}") |