blob: 594eca39fee45846026ded9aadfd6562dbc6948d (
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
|
TARGET = tbtnavi
TEMPLATE = app
QT += qml network quick positioning location sql widgets dbus
CONFIG += c++14
include(app.pri)
ios|android {
QT -= widgets
}
SOURCES += \
main.cpp \
qcheapruler.cpp \
dbus_client.cpp \
file_operation.cpp
HEADERS += \
qcheapruler.hpp \
dbus_client.h \
file_operation.h
INCLUDEPATH += \
../include
OTHER_FILES += \
qmapboxlgapp.qml
RESOURCES += \
images/images.qrc \
app.qrc
DBUS_ADAPTORS += org.agl.naviapi.xml
DBUS_INTERFACES += org.agl.naviapi.xml
|