summaryrefslogtreecommitdiffstats
path: root/tests/manual/qrc/qrc.pro
blob: 88d7baed473444fb942684d5136cb3cd17a5f5ea (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
TEMPLATE = app
TARGET = tst_qrc
CONFIG += qt warn_on

# This manual test is to confirm the functionality of running
# Qt3D QML apps from a Qt resource (or *.qrc) file.
#
# There is no point in installing or running this test on
# platforms which are only ever intended to run QML apps,
# and also since the point of qrc is that QML is packaged
# into a resource file (and thus does not require deployment)
# hence the pkg.pri logic is not included here.

!package: DESTDIR = ../../../bin

QT += 3d quick

SOURCES += main.cpp

INSTALL_DIRS = qml

OTHER_FILES += \
    qml/tst_qrc.qml

RESOURCES += \
    qrc.qrc