summaryrefslogtreecommitdiffstats
path: root/src/core/core_common.pri
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/core_common.pri')
-rw-r--r--src/core/core_common.pri8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/core/core_common.pri b/src/core/core_common.pri
index a2f7c9eb4..5f9f3c4f6 100644
--- a/src/core/core_common.pri
+++ b/src/core/core_common.pri
@@ -2,10 +2,14 @@
# gyp/ninja will take care of the compilation, qmake/make will finish with linking and install.
TARGET = QtWebEngineCore
-QT += qml quick webchannel
+QT += qml quick
QT_PRIVATE += quick-private gui-private core-private webenginecoreheaders-private
-qtHaveModule(positioning):QT += positioning
+qtConfig(webengine-geolocation): QT += positioning
+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