2011-10-25 04:42:16 +00:00
|
|
|
CONFIG += testcase
|
2012-05-29 04:08:07 +00:00
|
|
|
CONFIG += parallel_test
|
2012-10-05 08:10:46 +00:00
|
|
|
# Allow more time since examples are compiled, which may take longer on Windows.
|
|
|
|
win32:testcase.timeout=900
|
2011-10-25 04:42:16 +00:00
|
|
|
TARGET = tst_qmake
|
2011-04-27 10:05:43 +00:00
|
|
|
HEADERS += testcompiler.h
|
|
|
|
SOURCES += tst_qmake.cpp testcompiler.cpp
|
2011-10-25 04:42:16 +00:00
|
|
|
QT = core testlib
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
cross_compile: DEFINES += QMAKE_CROSS_COMPILED
|
2015-04-17 13:08:21 +00:00
|
|
|
debug_and_release {
|
|
|
|
CONFIG(debug, debug|release): \
|
|
|
|
DEFINES += DEBUG_BUILD
|
|
|
|
else: \
|
|
|
|
DEFINES += RELEASE_BUILD
|
|
|
|
}
|
2011-12-14 23:34:50 +00:00
|
|
|
|
|
|
|
TESTDATA += testdata/*
|