diff options
author | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2010-10-19 13:38:03 (GMT) |
---|---|---|
committer | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2010-10-19 13:54:39 (GMT) |
commit | a2fcae261dd1a2c676b4d636b4b218461a7f0587 (patch) | |
tree | 8f837d0f4d820ff705026d3f681d73b3e869011c /examples | |
parent | 59095bbc545a6abc1723bfb53dbd2118f86d4578 (diff) | |
download | Qt-a2fcae261dd1a2c676b4d636b4b218461a7f0587.zip Qt-a2fcae261dd1a2c676b4d636b4b218461a7f0587.tar.gz Qt-a2fcae261dd1a2c676b4d636b4b218461a7f0587.tar.bz2 |
Only add ICON for application projects in symbianpkgrules.pri
Build break is caused on some environments if ICON is defined for
non-application projects, as application_icon.prf doesn't get processed
for those, resulting in empty TARGETFILE field in bld.inf.
Task-number: QT-4193
Reviewed-by: Janne Koskinen
Diffstat (limited to 'examples')
-rw-r--r-- | examples/symbianpkgrules.pri | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/symbianpkgrules.pri b/examples/symbianpkgrules.pri index a1b6634..b22ca85 100644 --- a/examples/symbianpkgrules.pri +++ b/examples/symbianpkgrules.pri @@ -13,4 +13,4 @@ vendorinfo = \ examples_deployment.pkg_prerules += vendorinfo DEPLOYMENT += examples_deployment -isEmpty(ICON):ICON = $$QT_SOURCE_TREE/src/s60installs/qt.svg +contains(TEMPLATE,app):isEmpty(ICON):ICON = $$QT_SOURCE_TREE/src/s60installs/qt.svg |