summaryrefslogtreecommitdiffstats
path: root/src
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 /src
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 'src')
-rw-r--r--src/core/core_common.pri3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/core_common.pri b/src/core/core_common.pri
index ce0eecce2..5f9f3c4f6 100644
--- a/src/core/core_common.pri
+++ b/src/core/core_common.pri
@@ -10,3 +10,6 @@ qtConfig(webengine-webchannel): QT += webchannel
# LTO does not work for Chromium at the moment, so disable it completely for core.
CONFIG -= ltcg
+
+# Chromium requires C++14
+CONFIG += c++14