blob: a2f728346ef468bfd7afce5415cd0a52130dee57 (
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
|
TARGET = tbtnavi
TEMPLATE = app
QT += qml network quick positioning location widgets
PKGCONFIG += qlibhomescreen qlibwindowmanager
CONFIG += c++1z link_pkgconfig
include(app.pri)
SOURCES += \
main.cpp \
qcheapruler.cpp \
file_operation.cpp
HEADERS += \
qcheapruler.hpp \
file_operation.h
INCLUDEPATH += \
../include
OTHER_FILES += \
qmapboxlgapp.qml
RESOURCES += \
images/images.qrc \
app.qrc
|