diff options
author | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2010-10-05 14:20:29 (GMT) |
---|---|---|
committer | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2010-10-07 12:39:35 (GMT) |
commit | 50b2477e6ffd64a0730cc5c0f0a6190b1a6b5861 (patch) | |
tree | e7ab248bcabdc9d49de873829f602277204fb577 /doc/src/development | |
parent | 494ce0dac35c7ade0ce78589878597a7ca912864 (diff) | |
download | Qt-50b2477e6ffd64a0730cc5c0f0a6190b1a6b5861.zip Qt-50b2477e6ffd64a0730cc5c0f0a6190b1a6b5861.tar.gz Qt-50b2477e6ffd64a0730cc5c0f0a6190b1a6b5861.tar.bz2 |
Added .flags modifier support for DEPLOYMENT items in Symbian
The .flags modifier can be used to specify pkg flags for files.
For example, to make default application run after install:
default_bin_deployment.flags += FR RI
For example, to show a note at installation time:
notedep.sources = install_note.txt
notedep.flags = FT TC
DEPLOYMENT += notedep
See Symbian package file format documentation for exact supported
flag values.
Task-number: QTBUG-13367
Reviewed-by: Janne Anttila
Diffstat (limited to 'doc/src/development')
-rw-r--r-- | doc/src/development/qmake-manual.qdoc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/src/development/qmake-manual.qdoc b/doc/src/development/qmake-manual.qdoc index a5d0207..fe2e82a 100644 --- a/doc/src/development/qmake-manual.qdoc +++ b/doc/src/development/qmake-manual.qdoc @@ -1465,6 +1465,23 @@ This will entirely remove the default application deployment. + On the Symbian platform, you can specify file specific install options + with \c{.flags} modifier. Please consult the Symbian platform documentation + for supported options. + + For example: + + \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 155 + + This will show a message box that gives user an option to cancel the + installation and then automatically runs the application after + installation is complete. + + \note Automatically running the applications after install may require signing + the package with better than self-signed certificate, depending on the phone model. + Additionally, some tools such as Runonphone may not work properly with sis + packages that automatically run the application upon install. + 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 |