summaryrefslogtreecommitdiffstats
path: root/qmake/doc/src
diff options
context:
space:
mode:
authorOliver Wolff <oliver.wolff@qt.io>2020-06-05 09:24:37 +0200
committerLiang Qi <liang.qi@qt.io>2020-06-06 20:25:49 +0200
commit45b0f1be686cfba8dcecb9be5c875cae59c69276 (patch)
tree363dfd46575d147206267d854ce14747157f432e /qmake/doc/src
parentaa81b90738ce9faee5e433617c8bd243cb238729 (diff)
Remove winrt
Macros and the await helper function from qfunctions_winrt(_p).h are needed in other Qt modules which use UWP APIs on desktop windows. Task-number: QTBUG-84434 Change-Id: Ice09c11436ad151c17bdccd2c7defadd08c13925 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
Diffstat (limited to 'qmake/doc/src')
-rw-r--r--qmake/doc/src/qmake-manual.qdoc169
1 files changed, 0 insertions, 169 deletions
diff --git a/qmake/doc/src/qmake-manual.qdoc b/qmake/doc/src/qmake-manual.qdoc
index 95a0f42625..9b37756b79 100644
--- a/qmake/doc/src/qmake-manual.qdoc
+++ b/qmake/doc/src/qmake-manual.qdoc
@@ -3219,9 +3219,6 @@
On desktop Windows, the default value is the value of the environment
variable \c{WindowsSDKVersion}.
- On Universal Windows Platform (UWP), the default value is the value of the
- environment variable \c{UCRTVERSION}.
-
\target WINDOWS_TARGET_PLATFORM_MIN_VERSION
\section1 WINDOWS_TARGET_PLATFORM_MIN_VERSION
@@ -3230,172 +3227,6 @@
Defaults to \c{WINDOWS_TARGET_PLATFORM_VERSION}.
- \target WINRT_MANIFEST
- \section1 WINRT_MANIFEST
-
- Specifies parameters to be passed to the application manifest on
- \l{Qt for UWP}{UWP}. The allowed values are:
-
- \table
- \header
- \li Member
- \li Description
- \row
- \li architecture
- \li The target architecture. Defaults to \c VCPROJ_ARCH.
- \row
- \li background
- \li Tile background color. Defaults to \c{green}.
- \row
- \li capabilities
- \li Specifies capabilities to add to the capability list.
- \row
- \li capabilities_device
- \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
- \li dependencies
- \li Specifies dependencies required by the package.
- \row
- \li description
- \li Package description. Defaults to \c{Default package description}.
- \row
- \li foreground
- \li Tile foreground (text) color. Defaults to \c{light}.
- \row
- \li iconic_tile_icon
- \li Image file for the \c{iconic} tile template icon. Default provided by
- the mkspec.
- \row
- \li iconic_tile_small
- \li Image file for the small \c{iconic} tile template logo. Default provided
- by the mkspec.
- \row
- \li identity
- \li The unique ID of the app. Defaults to reusing the existing generated
- manifest's UUID, or generates a new UUID if none is present.
- \row
- \li logo_30x30
- \li Logo image file of size 30x30 pixels.
- \row
- \li logo_41x41
- \li Logo image file of size 41x41 pixels. This parameter is obsolete.
- \row
- \li logo_70x70
- \li Logo image file of size 70x70 pixels.
- \row
- \li logo_71x71
- \li Logo image file of size 71x71 pixels. This parameter is obsolete.
- \row
- \li logo_150x150
- \li Logo image file of size 150x150 pixels. This is supported on all Windows
- Store App platforms.
- \row
- \li logo_310x150
- \li Logo image file of size 310x150 pixels. This is supported on all Windows
- Store App platforms.
- \row
- \li logo_310x310
- \li Logo image file of size 310x310 pixels. This is supported on all Windows
- Store App platforms.
- \row
- \li logo_620x300
- \li Splash screen image file of size 620x300 pixels.
- \row
- \li logo_480x800
- \li Splash screen image file of size 480x800 pixels.
- This parameter is obsolete.
- \row
- \li logo_large
- \li Large logo image file. This has to be 150x150 pixels. Supported on all
- Windows Store App platforms. Default provided by the mkspec.
- \row
- \li logo_medium
- \li Medium logo image file. The image must have a pixel size of 70x70.
- Default provided by the mkspec.
- \row
- \li logo_small
- \li Small logo image file. The image must have a pixel size of 30x30.
- Default provided by the mkspec.
- \row
- \li logo_splash
- \li Splash screen image file. The image must have a pixel size of
- 620x300. Default provided by the mkspec.
- \row
- \li logo_store
- \li Logo image file for Windows Store. Default provided by the mkspec.
- \row
- \li logo_wide
- \li Wide logo image file. This has to be 310x150 pixels. Supported on all
- Windows Store App platforms. Default provided by the mkspec.
- \row
- \li name
- \li The name of the package as displayed to the user. Defaults to TARGET.
- \row
- \li phone_product_id
- \li The GUID of the product.
- This parameter is obsolete.
- \row
- \li phone_publisher_id
- \li The GUID of the publisher.
- This parameter is obsolete.
- \row
- \li publisher
- \li Display name of the publisher. Defaults to \c{Default publisher display name}.
- \row
- \li publisher_id
- \li The publisher's distinguished name (default: \c{CN=MyCN}).
- \row
- \li target
- \li The name of the target (.exe). Defaults to TARGET.
- \row
- \li version
- \li The version number of the package. Defaults to \c{1.0.0.0}.
- \row
- \li minVersion
- \li The minimum required Windows version to run the package.
- Defaults to \c{WINDOWS_TARGET_PLATFORM_VERSION}.
- \row
- \li maxVersionTested
- \li The maximum Windows version the package has been tested against.
- Defaults to \c{WINDOWS_TARGET_PLATFORM_MIN_VERSION}.
-
- \endtable
-
- You can use any combination of those values.
-
- For example:
-
- \code
- WINRT_MANIFEST.publisher = MyCompany
- WINRT_MANIFEST.logo_store = someImage.png
- WINRT_MANIFEST.capabilities += internetClient
- WINRT_MANIFEST.capabilities_device += location
- \endcode
-
- Additionally, an input manifest file can be specified by using WINRT_MANIFEST.
-
- For example:
-
- \code
- 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
-
\target YACCSOURCES
\section1 YACCSOURCES