summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Nichols <andy.nichols@qt.io>2016-08-08 12:42:54 +0200
committerAndy Nichols <andy.nichols@qt.io>2016-08-10 07:47:19 +0000
commit5513c45893e55163932937cc21ab743967600365 (patch)
tree059c808d300fc229403cb67e79b3464602b79f2d
parent2817f58b59837689717635d3213d169307f4baa8 (diff)
Fix build with 5.8 -no-opengl
The QML plugin chartsqml2 requires OpenGL support, but makes the assumption that availabiltiy of the qtquick module == OpenGL support, which is no longer true. This change disabled the plugin for no-opengl builds until they can be made to work. Task-number: QTBUG-55193 Change-Id: I8adeef44b255cd788e118ad8302db2b27039df79 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
-rw-r--r--src/src.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src.pro b/src/src.pro
index 507c9f56..af3dcd3b 100644
--- a/src/src.pro
+++ b/src/src.pro
@@ -1,6 +1,6 @@
TEMPLATE = subdirs
CONFIG += ordered
SUBDIRS += charts
-qtHaveModule(quick) {
+qtHaveModule(quick):contains(QT_CONFIG, opengl) {
SUBDIRS += chartsqml2
}