summaryrefslogtreecommitdiff
path: root/examples/sensors/grue/plugin/plugin.pro
blob: aa03d6c973f55ae57052dde078cd05b1834c1efb (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
TEMPLATE = lib
CONFIG += plugin
TARGET = $$qtLibraryTarget(plugins_sensors_qtsensors_grue)
PLUGIN_TYPE = sensors

QT = core sensors

macos:!qtConfig(static): DESTDIR = ../grue_app.app/Contents/MacOS/$$PLUGIN_TYPE
else: DESTDIR = ../$$PLUGIN_TYPE

HEADERS += gruesensorimpl.h \
           gruesensor.h \
           gruesensor_p.h

SOURCES += gruesensorimpl.cpp \
           main.cpp \
           gruesensor.cpp


# Install the plugin under Grue example directory
target.path=$$[QT_INSTALL_EXAMPLES]/sensors/grue/$$PLUGIN_TYPE
INSTALLS += target

CONFIG += install_ok  # Do not cargo-cult this!

OTHER_FILES += \
    plugin.json