summaryrefslogtreecommitdiffstats
path: root/basicsuite/ebike-ui/datamodelplugin/datamodelplugin.pro
blob: ce22eeca7ed8e60473aa29130c5d572a721d34d8 (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
30
31
32
33
34
35
36
37
38
39
TEMPLATE = lib
CONFIG += plugin
QT += qml quick positioning charts

TARGET  = ebikedatamodelplugin

SOURCES += plugin.cpp \
    $$PWD/../socketclient.cpp \
    $$PWD/../datastore.cpp \
    $$PWD/../navigation.cpp \
    $$PWD/../mapboxsuggestions.cpp \
    $$PWD/../suggestionsmodel.cpp \
    $$PWD/../mapbox.cpp \
    $$PWD/../brightnesscontroller.cpp \
    $$PWD/../fpscounter.cpp \
    $$PWD/../tripdatamodel.cpp

HEADERS += \
    $$PWD/../socketclient.h \
    $$PWD/../datastore.h \
    $$PWD/../navigation.h \
    $$PWD/../mapboxsuggestions.h \
    $$PWD/../suggestionsmodel.h \
    $$PWD/../mapbox.h \
    $$PWD/../brightnesscontroller.h \
    $$PWD/../fpscounter.h \
    $$PWD/../tripdatamodel.h

INCLUDEPATH += $$PWD/../

pluginfiles.files += \
    qmldir \

B2QT_DEPLOYPATH = /data/user/qt/qmlplugins/DataStore
target.path += $$B2QT_DEPLOYPATH
pluginfiles.path += $$B2QT_DEPLOYPATH

INSTALLS += target pluginfiles