diff options
author | Anderson Lizardo <anderson.lizardo@openbossa.org> | 2009-09-07 00:03:55 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2009-11-17 09:27:19 (GMT) |
commit | 415c9a230a957f17c759468c5333266968f74b96 (patch) | |
tree | 0aa8e4a638952fe97a575be36b26b890b6a8e02f /mkspecs/features | |
parent | 1609689ad1b9672fd4598aa30a7429b9d37bc3ca (diff) | |
download | Qt-415c9a230a957f17c759468c5333266968f74b96.zip Qt-415c9a230a957f17c759468c5333266968f74b96.tar.gz Qt-415c9a230a957f17c759468c5333266968f74b96.tar.bz2 |
Add Linux host support to Symbian mkspecs.
Signed-off-by: axis <qt-info@nokia.com>
Diffstat (limited to 'mkspecs/features')
-rw-r--r-- | mkspecs/features/symbian/application_icon.prf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mkspecs/features/symbian/application_icon.prf b/mkspecs/features/symbian/application_icon.prf index b0c1bb1..a8c3acc 100644 --- a/mkspecs/features/symbian/application_icon.prf +++ b/mkspecs/features/symbian/application_icon.prf @@ -19,7 +19,7 @@ contains( CONFIG, no_icon ) { # Note: symbian-sbsv2 builds can't utilize extra compiler for mifconv, so ICON handling is done in code symbian-abld { #Makefile: requires paths with backslash - ICON = $$replace( ICON, /, \\) + win32:ICON = $$replace(ICON, /, \\) # Extra compiler rules for mifconv mifconv.output = ${ZDIR}$$APP_RESOURCE_DIR/$${TARGET.UID3}.mif @@ -34,7 +34,7 @@ contains( CONFIG, no_icon ) { } # Rules to use generated MIF file from symbian resources RSS_RULES.number_of_icons = $$size(ICON) - RSS_RULES.icon_file = $$replace( APP_RESOURCE_DIR, /, \\\\ )\\\\$${TARGET.UID3}.mif + RSS_RULES.icon_file = APP_RESOURCE_DIR/$${TARGET.UID3}.mif + win32:RSS_RULES.icon_file = $$replace(RSS_RULES.icon_file, /, \\) } } - |