blob: 3a14c8005a7b0ce04b4a5d7f154fa42e05c9e53a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
TEMPLATE = app
TARGET = settings
QT = qml quickcontrols2
CONFIG += c++11 link_pkgconfig
PKGCONFIG += qtappfw-network qtappfw-bt
SOURCES = main.cpp
RESOURCES += \
settings.qrc \
images/images.qrc \
datetime/datetime.qrc \
wifi/wifi.qrc \
wired/wired.qrc \
bluetooth/bluetooth.qrc \
version/version.qrc
target.path = $${PREFIX}/usr/bin
target.files += $${OUT_PWD}/$${TARGET}
target.CONFIG = no_check_exist executable
INSTALLS += target
|