mirror of
https://github.com/QuasarApp/CQtDeployer.git
synced 2025-04-26 17:54:32 +00:00
30 lines
752 B
Plaintext
30 lines
752 B
Plaintext
unix:exec = $$PWD/UnitTests/build/release/UnitTests
|
|
win32:exec = $$PWD/UnitTests/build/release/UnitTests.exe
|
|
|
|
QT_DIR= $$[QT_HOST_BINS]
|
|
win32:QMAKE_BIN= $$QT_DIR/qmake.exe
|
|
contains(QMAKE_HOST.os, Linux):{
|
|
QMAKE_BIN= $$QT_DIR/qmake
|
|
}
|
|
|
|
DEPLOYER=cqtdeployer
|
|
win32:DEPLOYER=$$(cqtdeployer)
|
|
|
|
deployTest.commands = $$DEPLOYER -bin $$exec clear -qmake $$QMAKE_BIN -targetDir $$PWD/deployTests -libDir $$PWD -recursiveDepth 4
|
|
|
|
|
|
!android:test.depends = deployTest
|
|
unix:!android:test.commands = $$PWD/deployTests/UnitTests.sh -maxwarnings 100000
|
|
win32:test.commands = $$PWD/deployTests/UnitTests.exe -maxwarnings 100000 -o $$PWD/buildLog.log
|
|
|
|
contains(QMAKE_HOST.os, Linux):{
|
|
win32:test.commands =
|
|
}
|
|
|
|
|
|
QMAKE_EXTRA_TARGETS += \
|
|
deployTest \
|
|
test
|
|
|
|
|