aboutsummaryrefslogtreecommitdiffstats
path: root/src/shared
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2018-02-12 09:57:52 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2018-02-15 11:49:29 +0000
commit410740fc0ea11a78e2fd6d934f2ff79e2fbb3fb8 (patch)
treecf939097ff15ab5472d8a889d9d73a79df238d3b /src/shared
parente449b51d8c3d0a949e6d6d268e70ae5cbbe5d263 (diff)
Build qbs with C++14
This will enable us to simplify some of our templates. Qt Creator requires C++14 as well, so we won't break it. Change-Id: I577347ef12c53ff2ec59e88344ff181b27a0d50c Reviewed-by: Jake Petroules <jake.petroules@qt.io> Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'src/shared')
-rw-r--r--src/shared/json/json.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/json/json.qbs b/src/shared/json/json.qbs
index ce2653394..56d208962 100644
--- a/src/shared/json/json.qbs
+++ b/src/shared/json/json.qbs
@@ -3,7 +3,7 @@ import qbs
StaticLibrary {
name: "qbsjson"
Depends { name: "cpp" }
- cpp.cxxLanguageVersion: "c++11"
+ cpp.cxxLanguageVersion: "c++14"
cpp.minimumMacosVersion: "10.7"
files: [
"json.cpp",