Qt templates should have rss file being built in symbian block RCL_2_2
authorSteve Sobek <steve.sobek@nokia.com>
Wed, 07 Oct 2009 10:44:09 -0500
branchRCL_2_2
changeset 523 a37ccf171aa2
parent 522 b82f24afc6df
child 525 700285552e33
Qt templates should have rss file being built in symbian block
templates/com.nokia.carbide.cpp.qt.templates/templates/Qt-Console/Basename.pro
templates/com.nokia.carbide.cpp.qt.templates/templates/Qt-GUI-Common/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
+}
--- 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
+}