diff options
author | axis <qt-info@nokia.com> | 2009-10-07 09:32:30 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2009-10-07 11:52:09 (GMT) |
commit | 5ce632d3a8354f118225911103628e602559124e (patch) | |
tree | 56c1c751b1fa12392953cddbc6215568199a4557 /tests/auto/qtextstream | |
parent | 330dc1e5895a8950615a9bbf26154f5387b023b1 (diff) | |
download | Qt-5ce632d3a8354f118225911103628e602559124e.zip Qt-5ce632d3a8354f118225911103628e602559124e.tar.gz Qt-5ce632d3a8354f118225911103628e602559124e.tar.bz2 |
Fixed deployment when using cetest.
Cetest (and other programs that upload dlls manually without using a
package) need to deploy some plugins for specific tests. If those
tests are deployed in a normal package however, the installation will
fail because the plugins are already included in the Qt installation.
Fixed that by putting the deployment inside a scope that cetest will
define.
RevBy: Miikka Heikkinen
Diffstat (limited to 'tests/auto/qtextstream')
-rw-r--r-- | tests/auto/qtextstream/test/test.pro | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/auto/qtextstream/test/test.pro b/tests/auto/qtextstream/test/test.pro index 9f117d5..c70c27b 100644 --- a/tests/auto/qtextstream/test/test.pro +++ b/tests/auto/qtextstream/test/test.pro @@ -30,9 +30,11 @@ wince*: { }else:symbian { load(data_caging_paths) # Symbian can't define SRCDIR meaningfully here - codecs_plugins.sources = qcncodecs.dll qjpcodecs.dll qtwcodecs.dll qkrcodecs.dll - codecs_plugins.path = $$QT_PLUGINS_BASE_DIR/codecs - DEPLOYMENT += codecs_plugins + qt_not_deployed { + codecs_plugins.sources = qcncodecs.dll qjpcodecs.dll qtwcodecs.dll qkrcodecs.dll + codecs_plugins.path = $$QT_PLUGINS_BASE_DIR/codecs + DEPLOYMENT += codecs_plugins + } }else { DEFINES += SRCDIR=\\\"$$PWD/../\\\" } |