summaryrefslogtreecommitdiffstats
path: root/mkspecs
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2018-10-10 10:50:19 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2018-10-11 10:17:46 +0000
commitc11cfb5d6b251e908c75a47fe76a62b3907c6baf (patch)
tree440a3beef51fd6a79f684ee3008d09697fde4e12 /mkspecs
parent8b0f6b343dd807236001cacbae9bacb7e4923369 (diff)
Chromium requires C++14
QtWebEngineCore was only building because Chromium CPPFLAGS was overriding ours. And setting C++11 in our examples and tests now forces a downgrade. Change-Id: I3642394f15bb9974688991800552624d2379faf9 Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Diffstat (limited to 'mkspecs')
-rw-r--r--mkspecs/features/platform.prf4
1 files changed, 2 insertions, 2 deletions
diff --git a/mkspecs/features/platform.prf b/mkspecs/features/platform.prf
index 0a2e4b1ef..f41a43925 100644
--- a/mkspecs/features/platform.prf
+++ b/mkspecs/features/platform.prf
@@ -62,8 +62,8 @@ defineTest(isPlatformSupported) {
return(false)
}
- !contains(QT_CONFIG, c++11) {
- skipBuild("C++11 support is required in order to build chromium.")
+ !contains(QT_CONFIG, c++14) {
+ skipBuild("C++14 support is required in order to build chromium.")
return(false)
}
qtConfig(mirclient) {