summaryrefslogtreecommitdiffstats
path: root/Modules/Compiler/GNU-CXX-FeatureTests.cmake
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-04-06 09:40:11 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-04-16 13:16:23 (GMT)
commita36b957fc4594264965a86b54e5eab40520cf79d (patch)
tree08a5c7468d8095e5ccb34e1942d778303414e648 /Modules/Compiler/GNU-CXX-FeatureTests.cmake
parent8472ef243ffc9988ea8fb83cbc7acdf3f0daa239 (diff)
downloadCMake-a36b957fc4594264965a86b54e5eab40520cf79d.zip
CMake-a36b957fc4594264965a86b54e5eab40520cf79d.tar.gz
CMake-a36b957fc4594264965a86b54e5eab40520cf79d.tar.bz2
Features: Add cxx_template_template_parameters.
Extend the existing feature infrastructure as needed to support both C++11 and C++98 features.
Diffstat (limited to 'Modules/Compiler/GNU-CXX-FeatureTests.cmake')
-rw-r--r--Modules/Compiler/GNU-CXX-FeatureTests.cmake1
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/Compiler/GNU-CXX-FeatureTests.cmake b/Modules/Compiler/GNU-CXX-FeatureTests.cmake
index 3f169d2..fe0ff0b 100644
--- a/Modules/Compiler/GNU-CXX-FeatureTests.cmake
+++ b/Modules/Compiler/GNU-CXX-FeatureTests.cmake
@@ -74,4 +74,5 @@ set(_cmake_feature_test_cxx_extern_templates "${_oldestSupported} && __cplusplus
# TODO: Should be supported forever?
set(_cmake_feature_test_cxx_func_identifier "${_oldestSupported} && __cplusplus >= 201103L")
set(_cmake_feature_test_cxx_variadic_macros "${_oldestSupported} && __cplusplus >= 201103L")
+set(_cmake_feature_test_cxx_template_template_parameters "${_oldestSupported} && __cplusplus >= 199711L")
set(_oldestSupported)