aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorChristian Strømme <christian.stromme@digia.com>2013-09-25 14:51:05 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-25 15:46:22 +0200
commit8925114f6fd50bf6d21b18212a9772785ef3ce65 (patch)
tree267d62775dc4845bdd77f5e152df5dac4bd204cd /examples
parent4817842e1cc6a7017a2f836f69c9bea1de12dd47 (diff)
Check for the qml module before building the notification example.
Change-Id: I5cfcc26b196fe1f5d8d9bd647cad652a3eec5dae Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/androidextras/androidextras.pro6
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/androidextras/androidextras.pro b/examples/androidextras/androidextras.pro
index 31640ad..ce3926f 100644
--- a/examples/androidextras/androidextras.pro
+++ b/examples/androidextras/androidextras.pro
@@ -1,5 +1,7 @@
TEMPLATE = subdirs
android {
- SUBDIRS += notification
- EXAMPLE_FILES += notification
+ qtHaveModule(quick) {
+ SUBDIRS += notification
+ EXAMPLE_FILES += notification
+ }
}