blob: e9d79b024d30dd34e6f700709e393a67f78b9257 (
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
28
|
isEmpty(TEMPLATE):TEMPLATE=app
CONFIG += qt warn_on console depend_includepath
qtAddLibrary(QtTest)
# prefix test binary with tst_
!contains(TARGET, ^tst_.*):TARGET = $$join(TARGET,,"tst_")
########################################################################
# Use install rule to run test application.
# This lets you do 'make install' on a test to both build and run it,
# and lets you easily build and run all tests from the parent directory.
# ----------------------------------------------------------------------
runme.files =
runme.path = .
!isEmpty(DESTDIR): runme.commands = cd ./$(DESTDIR) &&
macx: runme.commands += ./$(QMAKE_TARGET).app/Contents/MacOS/$(QMAKE_TARGET)
else:unix: runme.commands += ./$(QMAKE_TARGET)
else:win32: {
CONFIG(debug, debug|release):runme.commands += debug\\$(QMAKE_TARGET)
else:runme.commands += release\\$(QMAKE_TARGET)
}
embedded: runme.commands += -qws
INSTALLS += runme
########################################################################
|