From c26fb372333deeef9fbf695b95138b11e90faf54 2014-10-24 06:23:28 From: Titta Heikkala Date: 2014-10-24 06:23:28 Subject: [PATCH] Fix Charts build when quick module is not build The QML side of Charts should not be built when Qt quick module is not present. Change-Id: Id48fe3c50f365ad195c90da6364d27afd97b90e2 Task-number: QTRD-3273 Reviewed-by: Miikka Heikkinen --- diff --git a/src/src.pro b/src/src.pro index d25e0e6..507c9f5 100644 --- a/src/src.pro +++ b/src/src.pro @@ -1,4 +1,6 @@ TEMPLATE = subdirs CONFIG += ordered -SUBDIRS += charts \ - chartsqml2 +SUBDIRS += charts +qtHaveModule(quick) { + SUBDIRS += chartsqml2 +}