diff options
author | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2010-02-04 13:08:44 (GMT) |
---|---|---|
committer | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2010-02-04 14:52:30 (GMT) |
commit | 9cc4ae77a73bd28ff495f36f26dd87c78b76b976 (patch) | |
tree | 4419fec06b6722016f4fcf7912a1b65df8b7081e /doc/src/development | |
parent | 91e236022acd79dfbc4aef9e30edb4d1aeb2685c (diff) | |
download | Qt-9cc4ae77a73bd28ff495f36f26dd87c78b76b976.zip Qt-9cc4ae77a73bd28ff495f36f26dd87c78b76b976.tar.gz Qt-9cc4ae77a73bd28ff495f36f26dd87c78b76b976.tar.bz2 |
Added support for smart installer package generation in Symbian
Smart installer packages bundle normal application sis with a bootstrap
package that will download a smart installer when the package
is installed. Smart installer in turn will download any dependencies
of the application that are available on remote server, such as
Open C, Qt, and QtWebkit packages, and install them
Smart installer packages are generated when DEPLOYMENT.installer_header
variable is defined in applicatoin .pro file.
This commit is still missing properly signed bootstrap.sis package.
Task-number: QTBUG-7908
Reviewed-by: Shane Kearns
Diffstat (limited to 'doc/src/development')
-rw-r--r-- | doc/src/development/qmake-manual.qdoc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/src/development/qmake-manual.qdoc b/doc/src/development/qmake-manual.qdoc index d7aa0db..49e1e71 100644 --- a/doc/src/development/qmake-manual.qdoc +++ b/doc/src/development/qmake-manual.qdoc @@ -1431,6 +1431,18 @@ is the application private directory on the drive it is installed to. \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 141 + On the Symbian platform, you can use \c{DEPLOYMENT.installer_header} + variable to generate smart installer wrapper for your application. + If you specify just UID of the installer package as the value, then + installer package name and version will be autogenerated: + + \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 146 + + If autogenerated values are not suitable, you can also specify the sis + header yourself using this variable: + + \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 147 + \target DEPLOYMENT_PLUGIN \section1 DEPLOYMENT_PLUGIN |