diff options
author | Maurice Kalinowski <maurice.kalinowski@nokia.com> | 2009-05-25 16:57:43 +0200 |
---|---|---|
committer | Maurice Kalinowski <maurice.kalinowski@nokia.com> | 2009-05-25 16:59:20 +0200 |
commit | 313e2719ac75eb6c6ff2d84f5cef9f70433d5943 (patch) | |
tree | 9974c73154a490a71dc266075bb104b0bbd3abbe /examples | |
parent | 0f0fc963a7f1691038ee36a27bb63ff3165eefba (diff) | |
download | qt4-tools-313e2719ac75eb6c6ff2d84f5cef9f70433d5943.tar.gz |
add deployment rules...
WinCE needs those files to be able to do something useful
Task-number: 254430
Task-number: 254437
Task-number: 254428
Reviewed-by: joerg
BT: yes
Diffstat (limited to 'examples')
-rw-r--r-- | examples/itemviews/puzzle/puzzle.pro | 5 | ||||
-rw-r--r-- | examples/qtconcurrent/imagescaling/imagescaling.pro | 2 | ||||
-rw-r--r-- | examples/widgets/movie/movie.pro | 8 |
3 files changed, 15 insertions, 0 deletions
diff --git a/examples/itemviews/puzzle/puzzle.pro b/examples/itemviews/puzzle/puzzle.pro index deed112f7d..4f5aaad0c8 100644 --- a/examples/itemviews/puzzle/puzzle.pro +++ b/examples/itemviews/puzzle/puzzle.pro @@ -12,3 +12,8 @@ target.path = $$[QT_INSTALL_EXAMPLES]/itemviews/puzzle sources.files = $$SOURCES $$HEADERS $$RESOURCES *.pro *.jpg sources.path = $$[QT_INSTALL_EXAMPLES]/itemviews/puzzle INSTALLS += target sources + +wince* { + DEPLOYMENT_PLUGIN += qjpeg qgif qtiff +} + diff --git a/examples/qtconcurrent/imagescaling/imagescaling.pro b/examples/qtconcurrent/imagescaling/imagescaling.pro index fbf864ab7b..0a25efb189 100644 --- a/examples/qtconcurrent/imagescaling/imagescaling.pro +++ b/examples/qtconcurrent/imagescaling/imagescaling.pro @@ -11,3 +11,5 @@ target.path = $$[QT_INSTALL_EXAMPLES]/qtconcurrent/imagescaling sources.files = $$SOURCES $$HEADERS $$FORMS $$RESOURCES *.pro *.png sources.path = $$[QT_INSTALL_EXAMPLES]/qtconcurrent/imagescaling INSTALLS += target sources + +wince*: DEPLOYMENT_PLUGIN += qgif qjpeg qtiff diff --git a/examples/widgets/movie/movie.pro b/examples/widgets/movie/movie.pro index 1c7cbae60f..6aa5780600 100644 --- a/examples/widgets/movie/movie.pro +++ b/examples/widgets/movie/movie.pro @@ -7,3 +7,11 @@ target.path = $$[QT_INSTALL_EXAMPLES]/widgets/movie sources.files = $$SOURCES $$HEADERS $$RESOURCES movie.pro animation.mng sources.path = $$[QT_INSTALL_EXAMPLES]/widgets/movie INSTALLS += target sources + +wince*: { + addFiles.sources += *.mng + addFiles.path = . + DEPLOYMENT += addFiles + DEPLOYMENT_PLUGIN += qmng +} + |