summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorHeiko Becker <heirecka@exherbo.org>2016-03-20 19:38:37 +0100
committerHeiko Becker <heirecka@exherbo.org>2016-03-21 08:53:41 +0000
commit5bc9fa41817ed4707543769d5f77ee6c4a27f27f (patch)
treee1366342c9a02b5089aef3fdb21d245d691803d9 /examples
parenta0363376cfbfd9359adbd2501dd087dfb0a4eb98 (diff)
downloadqtsvg-5bc9fa41817ed4707543769d5f77ee6c4a27f27f.tar.gz
examples: Only deploy on wince*
Otherwise heart.svg is installed two times - one time in a strange location. Change-Id: Iacd0c7342f323dd600e0539e399efe4d1d9e5665 Reviewed-by: Andreas Holzammer <andreas.holzammer@kdab.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/svg/richtext/textobject/textobject.pro8
1 files changed, 5 insertions, 3 deletions
diff --git a/examples/svg/richtext/textobject/textobject.pro b/examples/svg/richtext/textobject/textobject.pro
index 794ad32..8892ae7 100644
--- a/examples/svg/richtext/textobject/textobject.pro
+++ b/examples/svg/richtext/textobject/textobject.pro
@@ -12,6 +12,8 @@ RESOURCES = resources.qrc
target.path = $$[QT_INSTALL_EXAMPLES]/svg/richtext/textobject
INSTALLS += target
-filesToDeploy.files = files/*.svg
-filesToDeploy.path = files
-DEPLOYMENT += filesToDeploy
+wince*{
+ filesToDeploy.files = files/*.svg
+ filesToDeploy.path = files
+ DEPLOYMENT += filesToDeploy
+}