summaryrefslogtreecommitdiffstats
path: root/examples/sensors/grue/plugin/plugin.pro
blob: 9ff080f6579fbd75ab2debd028d537b1e8cc2b67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
TEMPLATE = lib
CONFIG += plugin
TARGET = $$qtLibraryTarget(qtsensors_grue)
PLUGIN_TYPE = sensors

QT = core sensors

INCLUDEPATH += $$PWD/../lib
LIBS += -L$$PWD/../lib -lgruesensor

HEADERS += gruesensorimpl.h\

SOURCES += gruesensorimpl.cpp\
           main.cpp\

symbian {
    TARGET.EPOCALLOWDLLDATA = 1
    TARGET.CAPABILITY = ALL -TCB
}

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