blob: 51a5abf0f9b02562085714ffdab925db78b93a96 (
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
|
TARGET = tbtnavi
TEMPLATE = app
QT = qml network quick positioning location widgets websockets
PKGCONFIG += qlibhomescreen qlibwindowmanager qtappfw-navigation qtappfw-signal-composer
CONFIG += c++1z link_pkgconfig
CONFIG(release, debug|release) {
QMAKE_POST_LINK = $(STRIP) --strip-unneeded $(TARGET)
}
include(app.pri)
SOURCES += \
main.cpp \
navigation_client.cpp \
qcheapruler.cpp \
file_operation.cpp
HEADERS += \
qcheapruler.hpp \
navigation_client.h \
file_operation.h
INCLUDEPATH += \
../include
OTHER_FILES += \
qmapboxlgapp.qml
RESOURCES += \
images/images.qrc \
app.qrc
|