diff options
Diffstat (limited to 'tests/auto/qapplication/test/test.pro')
-rw-r--r-- | tests/auto/qapplication/test/test.pro | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/auto/qapplication/test/test.pro b/tests/auto/qapplication/test/test.pro new file mode 100644 index 0000000..cda7940 --- /dev/null +++ b/tests/auto/qapplication/test/test.pro @@ -0,0 +1,22 @@ +load(qttest_p4) + +SOURCES += ../tst_qapplication.cpp +TARGET = ../tst_qapplication + +wince* { + additional.sources = ../desktopsettingsaware/desktopsettingsaware.exe + additional.path = desktopsettingsaware + someTest.sources = test.pro + someTest.path = test + DEPLOYMENT = additional deploy someTest +} + +win32 { + CONFIG(debug, debug|release) { + TARGET = ../../debug/tst_qapplication +} else { + TARGET = ../../release/tst_qapplication + } +} + + |