summaryrefslogtreecommitdiff
path: root/examples/sensors/qmlsensorgestures/plugin/plugin.pro
blob: 9d5f26b90a023a9611a68fd170442938c3d323a5 (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
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.path += $$[QT_INSTALL_PLUGINS]/sensorgestures
INSTALLS += target

}

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

OTHER_FILES += \
    plugin.json