727da2965c
[ChangeLog][qmake] If you use CONFIG+=qmltestcase with no SOURCES, 'make check' will now run qmltestrunner for you. Change-Id: Ie9dfaef75494c9b38f6c9a6239754858535d8657 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
20 lines
563 B
Plaintext
20 lines
563 B
Plaintext
!isEmpty(SOURCES) {
|
|
QT += qml qmltest
|
|
load(testcase)
|
|
CONFIG -= app_bundle
|
|
DEFINES += QUICK_TEST_SOURCE_DIR=\"\\\"$$_PRO_FILE_PWD_\\\"\"
|
|
} else {
|
|
# Allow a project to run tests without a CPP stub
|
|
TEMPLATE = aux
|
|
QMAKE_EXTRA_TARGETS += check
|
|
qtPrepareTool(QMAKE_QMLTESTRUNNER, qmltestrunner)
|
|
check.commands = $$QMAKE_QMLTESTRUNNER
|
|
}
|
|
|
|
# If the .pro file specified an IMPORTPATH, then add that to
|
|
# the command-line when the test is run.
|
|
!isEmpty(IMPORTPATH) {
|
|
for(import, IMPORTPATH): check.commands += -import \"$$import\"
|
|
}
|
|
|