aboutsummaryrefslogtreecommitdiffstats
path: root/examples/customruntime/customruntime.pro
blob: 90920fb79182dad938a42e855c99147dc293f4cc (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 = customruntime
CONFIG += c++11

macx*: CONFIG -= app_bundle
QT *= quick

include(../../src/lib.pri)

SOURCES += main.cpp

target.path = $$EXAMPLES_PREFIX/customruntime
INSTALLS += target

qml.files = qml/*.qml
qml.path = $$target.path/qml
INSTALLS += qml
OTHER_FILES += $$qml.files

icon.files = icon.png
icon.path = $$target.path
INSTALLS += icon
OTHER_FILES += $$icon.files