Skip to content
Snippets Groups Projects
Commit 60f68080 authored by ck's avatar ck
Browse files

QML standalone application wizard: Un-eval project file template.

Reviewed-by: Oswald Buddenhagen
parent 27026af2
No related branches found
No related tags found
No related merge requests found
...@@ -22,9 +22,12 @@ symbian { ...@@ -22,9 +22,12 @@ symbian {
TARGET.UID3 = 0xE1111234 TARGET.UID3 = 0xE1111234
ICON = cpp/symbianicon.svg ICON = cpp/symbianicon.svg
for(deploymentfolder, DEPLOYMENTFOLDERS) { for(deploymentfolder, DEPLOYMENTFOLDERS) {
eval(item$${deploymentfolder}.sources = $${deploymentfolder}) item = item$${deploymentfolder}
eval(item$${deploymentfolder}.path = qml) itemsources = $${item}.sources
eval(DEPLOYMENT += item$${deploymentfolder}) $$itemsources = $${deploymentfolder}
itempath = $${item}.path
$$itempath = qml
DEPLOYMENT += $$item
} }
contains(DEFINES, ORIENTATIONLOCK):LIBS += -lavkon -leikcore -leiksrv -lcone contains(DEFINES, ORIENTATIONLOCK):LIBS += -lavkon -leikcore -leiksrv -lcone
contains(DEFINES, NETWORKACCESS):TARGET.CAPABILITY += NetworkServices contains(DEFINES, NETWORKACCESS):TARGET.CAPABILITY += NetworkServices
...@@ -45,8 +48,11 @@ symbian { ...@@ -45,8 +48,11 @@ symbian {
} else { } else {
# TODO: make this work # TODO: make this work
for(deploymentfolder, DEPLOYMENTFOLDERS) { for(deploymentfolder, DEPLOYMENTFOLDERS) {
eval(item$${deploymentfolder}.files = $${deploymentfolder}) item = item$${deploymentfolder}
eval(item$${deploymentfolder}.path = qml) itemfiles = $${item}.files
eval(INSTALLS += item$${deploymentfolder}) $$itemfiles = $${deploymentfolder}
itempath = $${item}.path
$$itempath = qml
INSTALLS += $$item
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment