summaryrefslogtreecommitdiffstats
path: root/examples/examples.pro
diff options
context:
space:
mode:
authorDominik Holland <dominik.holland@pelagicore.com>2015-08-04 15:53:15 +0200
committerDominik Holland <dominik.holland@pelagicore.com>2015-08-04 15:53:15 +0200
commit466752f4e334a33eb24bdee4461b4668557bd0ee (patch)
tree2409770fe7bab5a887854b9657581571dfee4c5c /examples/examples.pro
parentb54e5a04a2d329cb6684d4c7e19e53d2aa48b9b0 (diff)
Fix qmake error when dlt is not installed on the system
The problem will only occur if qmake -r is used
Diffstat (limited to 'examples/examples.pro')
-rw-r--r--examples/examples.pro4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/examples.pro b/examples/examples.pro
index 2f475999..f871e518 100644
--- a/examples/examples.pro
+++ b/examples/examples.pro
@@ -1,2 +1,4 @@
TEMPLATE = subdirs
-SUBDIRS += geniviextras
+qtHaveModule(geniviextras) {
+ SUBDIRS += geniviextras
+}