summaryrefslogtreecommitdiffstats
path: root/qmake/doc/src/qmake-manual.qdoc
diff options
context:
space:
mode:
Diffstat (limited to 'qmake/doc/src/qmake-manual.qdoc')
-rw-r--r--qmake/doc/src/qmake-manual.qdoc17
1 files changed, 16 insertions, 1 deletions
diff --git a/qmake/doc/src/qmake-manual.qdoc b/qmake/doc/src/qmake-manual.qdoc
index 1cfe4c9979..aa6c8b35cc 100644
--- a/qmake/doc/src/qmake-manual.qdoc
+++ b/qmake/doc/src/qmake-manual.qdoc
@@ -2596,6 +2596,10 @@
\li Specifies device capabilities to add to the capability list
(location, webcam, and so on).
\row
+ \li CONFIG
+ \li Specifies additional flags for processing the input manifest file.
+ Currently, \c{verbatim} is the only available option.
+ \row
\li default_language
\li The default language code of the application. Defaults to "en".
\row
@@ -2727,6 +2731,14 @@
WINRT_MANIFEST = someManifest.xml.in
\endcode
+ In case the input manifest file should not be processed and only copied to
+ the target directory, the verbatim configuration needs to be set.
+
+ \code
+ WINRT_MANIFEST = someManifest.xml.in
+ WINRT_MANIFEST.CONFIG += verbatim
+ \endcode
+
\note The required image sizes of \e logo_small, \e logo_medium, and \e logo_large
depend on the target platform. The general descriptions are overwritten if a
description that specifies the size is provided.
@@ -3006,10 +3018,13 @@
sum = $$num_add($$first, $$second_neg)
\endcode
- \section2 prompt(question)
+ \section2 prompt(question [, decorate])
Displays the specified \c question, and returns a value read from stdin.
+ If \c decorate is \e true (the default), the question gets a generic
+ prefix and suffix identifying it as a prompt.
+
\section2 quote(string)
Converts a whole \c string into a single entity and returns the result.