diff options
author | Christian Kandeler <christian.kandeler@qt.io> | 2018-02-06 11:06:12 +0100 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@qt.io> | 2018-02-07 08:48:25 +0000 |
commit | ccb0c77077d406573b37f88bfa985528e674639e (patch) | |
tree | a8264ce4231334725b51edac4e75a22e6f560ebc /share/qbs/modules/cpp/CppModule.qbs | |
parent | ebc12dec06f9925eb02f2f4c0cbfde2c99427eb1 (diff) | |
download | qbs-ccb0c77077d406573b37f88bfa985528e674639e.tar.gz |
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.qbs | 2 |
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." } |