summaryrefslogtreecommitdiffstats
path: root/doc/src
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@digia.com>2010-10-07 12:36:45 (GMT)
committerMiikka Heikkinen <miikka.heikkinen@digia.com>2010-10-07 12:39:37 (GMT)
commit9cb24d1c4b7359ec84708ba770050de720b50cdf (patch)
tree3f66354ac7a113c21931f47c0239798dcc246679 /doc/src
parent50b2477e6ffd64a0730cc5c0f0a6190b1a6b5861 (diff)
downloadQt-9cb24d1c4b7359ec84708ba770050de720b50cdf.zip
Qt-9cb24d1c4b7359ec84708ba770050de720b50cdf.tar.gz
Qt-9cb24d1c4b7359ec84708ba770050de720b50cdf.tar.bz2
Implement support for DEPLOYMENT.display_name in Symbian
The default package name and the default name that appears in the application menu is derived from the TARGET variable. Often the default is not optimal for displaying to end user. To set a better display name for these purposes DEPLOYMENT.display_name variable can now be used. Task-number: QTBUG-14280 Reviewed-by: Janne Anttila
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/development/qmake-manual.qdoc7
-rw-r--r--doc/src/snippets/code/doc_src_qmake-manual.qdoc4
2 files changed, 11 insertions, 0 deletions
diff --git a/doc/src/development/qmake-manual.qdoc b/doc/src/development/qmake-manual.qdoc
index fe2e82a..588a9cc 100644
--- a/doc/src/development/qmake-manual.qdoc
+++ b/doc/src/development/qmake-manual.qdoc
@@ -1482,6 +1482,13 @@
Additionally, some tools such as Runonphone may not work properly with sis
packages that automatically run the application upon install.
+ On the Symbian platform, the default package name and the default name that
+ appears in application menu is derived from the \c TARGET variable.
+ Often the default is not optimal for displaying to end user. To set a better
+ display name for these purposes, use \c{DEPLOYMENT.display_name} variable:
+
+ \snippet doc/src/snippets/code/doc_src_qmake-manual.qdoc 156
+
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
diff --git a/doc/src/snippets/code/doc_src_qmake-manual.qdoc b/doc/src/snippets/code/doc_src_qmake-manual.qdoc
index a5bc1f3..4f74e9c 100644
--- a/doc/src/snippets/code/doc_src_qmake-manual.qdoc
+++ b/doc/src/snippets/code/doc_src_qmake-manual.qdoc
@@ -1025,3 +1025,7 @@ dep_note.sources = install_note.txt
dep_note.flags = FILETEXT TEXTEXIT
DEPLOYMENT += dep_note
//! [155]
+
+//! [156]
+DEPLOYMENT.display_name = My Qt App
+//! [156]