blob: 837399c900b3bc3c7e62d1407dbdda8e7c8f5d3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
TEMPLATE = app
TARGET = radio
QT = qml quickcontrols2
CONFIG += c++11 link_pkgconfig
PKGCONFIG += qtappfw-radio
HEADERS = PresetDataObject.h
SOURCES = main.cpp PresetDataObject.cpp
RESOURCES += \
radio.qrc \
images/images.qrc
target.path = /usr/bin
target.files += $${OUT_PWD}/$${TARGET}
target.CONFIG = no_check_exist executable
INSTALLS += target
|