summaryrefslogtreecommitdiffstats
path: root/tests/auto
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 /tests/auto
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 'tests/auto')
-rw-r--r--tests/auto/qsensorgestures/plugins/test1/test1.pro9
1 files changed, 3 insertions, 6 deletions
diff --git a/tests/auto/qsensorgestures/plugins/test1/test1.pro b/tests/auto/qsensorgestures/plugins/test1/test1.pro
index 17fc6b19..e0dab443 100644
--- a/tests/auto/qsensorgestures/plugins/test1/test1.pro
+++ b/tests/auto/qsensorgestures/plugins/test1/test1.pro
@@ -1,10 +1,9 @@
-TEMPLATE = lib
-CONFIG += plugin
-
TARGET = qtsensorgestures_testplugin1
QT += sensors sensorgestures
-DESTDIR = $$QT.sensorgestures.plugins/sensorgestures
+
+PLUGIN_TYPE = sensorgestures
+load(qt_plugin)
# Input
HEADERS += qtestsensorgestureplugindup_p.h \
@@ -14,6 +13,4 @@ SOURCES += qtestsensorgestureplugindup.cpp \
qtestrecognizerdup.cpp \
qtest2recognizerduo.cpp
-target.path += $$[QT_INSTALL_PLUGINS]/sensorgestures
-INSTALLS += target
DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0