summaryrefslogtreecommitdiffstats
path: root/examples/sensors
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@digia.com>2012-10-24 15:38:54 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-11-02 18:13:31 +0100
commit980ce3eb2a9da3a4b20993e221889597d18d0a0d (patch)
tree0f4bf83fe1c39508a23f8e0263a79734caa29caa /examples/sensors
parenteee645574f6d3e265372a1af249bd62a2506c32a (diff)
adjust to qt_plugin.prf and qml_plugin.prf changes
DESTDIR and INSTALLS+=target are set up automatically now, but PLUGIN_TYPE needs to be defined. this contains a nasty hack for examples, as we don't want users to use the internal prf files. Change-Id: I9e854e7ff6183e19801998ff7157a279b97b2be4 Reviewed-by: Lorn Potter <lorn.potter@gmail.com>
Diffstat (limited to 'examples/sensors')
-rw-r--r--examples/sensors/qmlsensorgestures/plugin/plugin.pro18
1 files changed, 12 insertions, 6 deletions
diff --git a/examples/sensors/qmlsensorgestures/plugin/plugin.pro b/examples/sensors/qmlsensorgestures/plugin/plugin.pro
index 2003e910..9d5f26b9 100644
--- a/examples/sensors/qmlsensorgestures/plugin/plugin.pro
+++ b/examples/sensors/qmlsensorgestures/plugin/plugin.pro
@@ -1,10 +1,19 @@
+QT += sensors
+TARGET = qtsensorgestures_counterplugin
+
+QTDIR_build {
+# This is only for the Qt build. Do not use externally. We mean it.
+PLUGIN_TYPE = sensorgestures
+load(qt_plugin)
+} else {
+
TEMPLATE = lib
CONFIG += plugin
-TARGET = qtsensorgestures_counterplugin
+target.path += $$[QT_INSTALL_PLUGINS]/sensorgestures
+INSTALLS += target
-QT += sensors
-DESTDIR = $$QT.sensors.plugins/sensorgestures
+}
HEADERS += \
qcountergestureplugin.h \
@@ -13,9 +22,6 @@ SOURCES += \
qcountergestureplugin.cpp \
qcounterrecognizer.cpp
-target.path += $$[QT_INSTALL_PLUGINS]/sensorgestures
-INSTALLS += target
-
OTHER_FILES += \
plugin.json