# HG changeset patch # User Steve Sobek # Date 1254930249 18000 # Node ID a37ccf171aa2e15da6f18b1762e74ad3fbd3d68f # Parent b82f24afc6df521ad66a48ec3cdebcca77de5762 Qt templates should have rss file being built in symbian block diff -r b82f24afc6df -r a37ccf171aa2 templates/com.nokia.carbide.cpp.qt.templates/templates/Qt-Console/Basename.pro --- a/templates/com.nokia.carbide.cpp.qt.templates/templates/Qt-Console/Basename.pro Tue Oct 06 21:15:44 2009 -0500 +++ b/templates/com.nokia.carbide.cpp.qt.templates/templates/Qt-Console/Basename.pro Wed Oct 07 10:44:09 2009 -0500 @@ -4,9 +4,12 @@ $(modulesText) HEADERS += -SOURCES += main.cpp \ - $(baseName)_reg.rss +SOURCES += main.cpp FORMS += RESOURCES += -symbian:TARGET.UID3 = $(uid3) +symbian: { + TARGET.UID3 = $(uid3) + + SOURCES += $(baseName)_reg.rss +} diff -r b82f24afc6df -r a37ccf171aa2 templates/com.nokia.carbide.cpp.qt.templates/templates/Qt-GUI-Common/Basename.pro --- a/templates/com.nokia.carbide.cpp.qt.templates/templates/Qt-GUI-Common/Basename.pro Tue Oct 06 21:15:44 2009 -0500 +++ b/templates/com.nokia.carbide.cpp.qt.templates/templates/Qt-GUI-Common/Basename.pro Wed Oct 07 10:44:09 2009 -0500 @@ -4,10 +4,13 @@ $(modulesText) HEADERS += $(className).h -SOURCES += $(baseName)_reg.rss \ - main.cpp \ - $(className).cpp +SOURCES += main.cpp \ + $(className).cpp FORMS += $(baseName).ui RESOURCES += -symbian:TARGET.UID3 = $(uid3) +symbian: { + TARGET.UID3 = $(uid3) + + SOURCES += $(baseName)_reg.rss +}