Specifying a Symbian Embedded SIS in a Qt project
Article Metadata
Code Example
Source file: Media:PkgEmbededSIS.zip
Article
Created: flycarl
(22 Jun 2011)
Last edited: hamishwillee
(02 Mar 2012)
This article illustrates how to use Symbian's Embedded SIS method to package a SIS file inside another sis file.
Process
Copy alipay_plugin_v5_224_0407.sisx to project directoryadd following line in .pro file
symbian {
my_deployment.pkg_postrules.main = "IF NOT package(0x2003AB2E)"\
"; install minimal.sis only if not already installed"\
"@\"alipay_plugin_v5_224_0407.sisx\", (0x2003AB2E)" \
"endif "
DEPLOYMENT += my_deployment
}pkg_postrules adds line after pkg original line. Main means the lines only influence Qt project's _template.pkg file.after packaging like this, the installation will automatically load the embedded sis installation.


(no comments yet)