summaryrefslogtreecommitdiffstats
path: root/examples/sensors/qmlsensorgestures/plugin/plugin.pro
blob: 23ece17b16c78fff31288c23e068f257ec26f9ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
QT += sensors
TARGET = qtsensorgestures_counterplugin

QTDIR_build {
# This is only for the Qt build. Do not use externally. We mean it.
PLUGIN_TYPE = sensorgestures
PLUGIN_CLASS_NAME = QCounterGesturePlugin
PLUGIN_EXTENDS = -
load(qt_plugin)
} else {

TEMPLATE = lib
CONFIG += plugin

target.path += $$[QT_INSTALL_PLUGINS]/sensorgestures
INSTALLS += target

}

HEADERS += \
    qcountergestureplugin.h \
    qcounterrecognizer.h
SOURCES += \
    qcountergestureplugin.cpp \
    qcounterrecognizer.cpp

OTHER_FILES += \
    plugin.json