diff options
author | Frans Englich <frans.englich@nokia.com> | 2009-08-13 16:10:20 (GMT) |
---|---|---|
committer | Frans Englich <frans.englich@nokia.com> | 2009-08-13 16:10:20 (GMT) |
commit | e2eaf3cd9ce752fe88d2705111f28a5ad4a336ab (patch) | |
tree | 46503b1d9784e76b7f81941e4ac139e294919516 /tests/auto | |
parent | f82a226607b079b360c88afbe0423d990071b0ba (diff) | |
download | Qt-e2eaf3cd9ce752fe88d2705111f28a5ad4a336ab.zip Qt-e2eaf3cd9ce752fe88d2705111f28a5ad4a336ab.tar.gz Qt-e2eaf3cd9ce752fe88d2705111f28a5ad4a336ab.tar.bz2 |
Fix build, by adjusting according to how test QProcess is.
Diffstat (limited to 'tests/auto')
-rw-r--r-- | tests/auto/qtextcodec/test/test.pro | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/tests/auto/qtextcodec/test/test.pro b/tests/auto/qtextcodec/test/test.pro index 9c07e76..99f94d4 100644 --- a/tests/auto/qtextcodec/test/test.pro +++ b/tests/auto/qtextcodec/test/test.pro @@ -1,6 +1,21 @@ load(qttest_p4) -TARGET = ../tst_qtextcodec + SOURCES += ../tst_qtextcodec.cpp + +!wince*: { +TARGET = ../tst_qtextcodec + +win32: { + CONFIG(debug, debug|release) { + TARGET = ../../debug/tst_qtextcodec +} else { + TARGET = ../../release/tst_qtextcodec + } +} +} else { + TARGET = tst_qtextcodec +} + wince*: { addFiles.sources = ../*.txt addFiles.path = . |