diff options
author | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2010-03-24 11:42:38 (GMT) |
---|---|---|
committer | Miikka Heikkinen <miikka.heikkinen@digia.com> | 2010-03-24 11:47:32 (GMT) |
commit | b87edcb5fe59b590e20367b167e50abbb23484f4 (patch) | |
tree | 12a3436fd5c6929b5a68daf07764ebdff545a160 /doc/src/development | |
parent | a2f2c87f320873d1968d931ad69a0f640c5545b1 (diff) | |
download | Qt-b87edcb5fe59b590e20367b167e50abbb23484f4.zip Qt-b87edcb5fe59b590e20367b167e50abbb23484f4.tar.gz Qt-b87edcb5fe59b590e20367b167e50abbb23484f4.tar.bz2 |
Clarified pkg_prerules usage documentation.
The default_deployment item shouldn't be used to add own rules.
Task-number: QTBUG-9277
Reviewed-by: Janne Anttila
Diffstat (limited to 'doc/src/development')
-rw-r--r-- | doc/src/development/qmake-manual.qdoc | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/doc/src/development/qmake-manual.qdoc b/doc/src/development/qmake-manual.qdoc index 7ab3cd2..eaf6cd0 100644 --- a/doc/src/development/qmake-manual.qdoc +++ b/doc/src/development/qmake-manual.qdoc @@ -1421,12 +1421,20 @@ is the application private directory on the drive it is installed to. attention that also other statements stay valid. For example if you override languages statement, you must override also package-header statement and all other statements which are language specific. + + On the Symbian platform, the \c default_deployment item specifies + default platform and package dependencies. Those dependencies can be + selectively disabled if alternative dependencies need to be defined + - e.g. if a specific device is required to run the application or + more languages need to be supported by the package file. The supported + \c default_deployment rules that can be disabled are: - On the Symbian platform, the \c default_deployment item specifies - default platform dependencies. It can be overwritten if a more - restrictive set is needed - e.g. if a specific - device is required to run the application. - + \list + \o pkg_depends_qt + \o pkg_depends_webkit + \o pkg_platform_dependencies + \endlist + For example: \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 141 |