aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/cpp/CppModule.qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2018-02-06 11:06:12 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2018-02-07 08:48:25 +0000
commitccb0c77077d406573b37f88bfa985528e674639e (patch)
treea8264ce4231334725b51edac4e75a22e6f560ebc /share/qbs/modules/cpp/CppModule.qbs
parentebc12dec06f9925eb02f2f4c0cbfde2c99427eb1 (diff)
Officially provide "c++17" as possible value for cpp.cxxLanguageVersion
The standard is out now. Task-number: QBS-1020 Change-Id: Ie8249e1c860d5ebc2f9dadf02551544ddaaf2868 Reviewed-by: Jake Petroules <jake.petroules@qt.io>
Diffstat (limited to 'share/qbs/modules/cpp/CppModule.qbs')
-rw-r--r--share/qbs/modules/cpp/CppModule.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/qbs/modules/cpp/CppModule.qbs b/share/qbs/modules/cpp/CppModule.qbs
index dc175e875..b4ef22c8d 100644
--- a/share/qbs/modules/cpp/CppModule.qbs
+++ b/share/qbs/modules/cpp/CppModule.qbs
@@ -286,7 +286,7 @@ Module {
property string cxxLanguageVersion
PropertyOptions {
name: "cxxLanguageVersion"
- allowedValues: ["c++98", "c++11", "c++14"]
+ allowedValues: ["c++98", "c++11", "c++14", "c++17"]
description: "The version of the C++ standard with which the code must comply."
}