diff options
author | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2010-10-05 11:39:41 (GMT) |
---|---|---|
committer | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2010-10-07 12:39:33 (GMT) |
commit | 494ce0dac35c7ade0ce78589878597a7ca912864 (patch) | |
tree | 27b5d55713470f3d22c2fd8f2ace23e42279e16d /doc/src/development | |
parent | 6729e107c95ab108954d2acbf0a77a75fa087d1a (diff) | |
download | Qt-494ce0dac35c7ade0ce78589878597a7ca912864.zip Qt-494ce0dac35c7ade0ce78589878597a7ca912864.tar.gz Qt-494ce0dac35c7ade0ce78589878597a7ca912864.tar.bz2 |
Make default application deployment removable
Default application deployment was hard coded in qmake, so it was
impossible to replace with custom deployment. Now the default deployment
is generated via .prf files and is removable.
Task-number: QTBUG-13367
Reviewed-by: axis
Diffstat (limited to 'doc/src/development')
-rw-r--r-- | doc/src/development/qmake-manual.qdoc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/src/development/qmake-manual.qdoc b/doc/src/development/qmake-manual.qdoc index bc0df04..a5d0207 100644 --- a/doc/src/development/qmake-manual.qdoc +++ b/doc/src/development/qmake-manual.qdoc @@ -1449,6 +1449,22 @@ \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 141 + On the Symbian platform, a default deployment is generated for all + application projects. You can modify the autogenerated default + deployment via following \c DEPLOYMENT variable values: + + \list + \o default_bin_deployment - Application executable + \o default_resource_deployment - Application resources, including icon + \o default_reg_deployment - Application registration file + \endlist + + For example: + + \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 154 + + This will entirely remove the default application deployment. + 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 |