e124ad54b8
Standalone files are added by using RESOURCES += file.txt, while collections of files are defined as collection.files = f1.txt f2.txt and then added using RESOURCES += collection. For collections a prefix can also be set using collection.prefix = /foo. The standalone files are not prefixed. Change-Id: I8236808238414da05e744f799a1bb15a72f4a46f Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@theqtcompany.com>
19 lines
462 B
Prolog
19 lines
462 B
Prolog
CONFIG += testcase
|
|
CONFIG += parallel_test
|
|
# Allow more time since examples are compiled, which may take longer on Windows.
|
|
win32:testcase.timeout=900
|
|
TARGET = tst_qmake
|
|
HEADERS += testcompiler.h
|
|
SOURCES += tst_qmake.cpp testcompiler.cpp
|
|
QT = core testlib
|
|
|
|
cross_compile: DEFINES += QMAKE_CROSS_COMPILED
|
|
debug_and_release {
|
|
CONFIG(debug, debug|release): \
|
|
DEFINES += DEBUG_BUILD
|
|
else: \
|
|
DEFINES += RELEASE_BUILD
|
|
}
|
|
|
|
TESTDATA += testdata/*
|