blob: af6d7758fa2b00073dd6629fd445cf22a9bf0bbc (
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
|
TARGET = tbtnavi
TEMPLATE = app
QT += qml network quick positioning location sql widgets dbus
PKGCONFIG += qlibhomescreen qlibwindowmanager
CONFIG += c++1z link_pkgconfig
include(app.pri)
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
|