blob: 8889208ebe4d2ee81a0974fd44ff2eae641f2f49 (
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 = app
TARGET = tbtnavi
QT = qml network quick positioning location widgets gui-private
PKGCONFIG += qtappfw-navigation wayland-client
CONFIG += c++1z link_pkgconfig wayland-scanner
SOURCES += \
main.cpp \
navigation_client.cpp \
qcheapruler.cpp \
file_operation.cpp \
shell-desktop.cpp
HEADERS += \
qcheapruler.hpp \
navigation_client.h \
file_operation.h \
shell-desktop.h
INCLUDEPATH += \
../include
OTHER_FILES += \
qmapboxlgapp.qml
RESOURCES += \
images/images.qrc \
app.qrc
WAYLANDCLIENTSOURCES += \
protocol/agl-shell-desktop.xml
target.path = /usr/bin
target.files += $${OUT_PWD}/$${TARGET}
target.CONFIG = no_check_exist executable
INSTALLS += target
|