summaryrefslogtreecommitdiffstats
path: root/src/corelib/doc/src/plugins-howto.qdoc
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@digia.com>2012-12-10 16:11:47 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-12-10 15:33:54 +0100
commit903fa2e4aa0d4e0cf0e13216dd8883b5e4a7709d (patch)
tree2b4a5deff813da0b1c81b26de2e3b348a2828243 /src/corelib/doc/src/plugins-howto.qdoc
parentf166fcd3d0931ecc08087b12fdac5940e5ccbdf7 (diff)
Add QT_DEFAULT_QPA_PLUGIN to generated qconfig.pri
Configure will now generate QT_DEFAULT_QPA_PLUGIN qmake variable to specify the default QPA plugin. "CONFIG += qpa_default_plugin" statement in application .pro file will add the default QPA plugin into QTPLUGINS. "CONFIG += qpa_minimal_plugin" statement in application .pro file will add the minimal QPA plugin into QTPLUGINS. Task-number: QTBUG-28131 Change-Id: I12a241005f30b37467d783b50f0369b47e605e68 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Diffstat (limited to 'src/corelib/doc/src/plugins-howto.qdoc')
-rw-r--r--src/corelib/doc/src/plugins-howto.qdoc10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/corelib/doc/src/plugins-howto.qdoc b/src/corelib/doc/src/plugins-howto.qdoc
index 332b92596b..37c1c13fea 100644
--- a/src/corelib/doc/src/plugins-howto.qdoc
+++ b/src/corelib/doc/src/plugins-howto.qdoc
@@ -296,6 +296,16 @@
to make sure that the \c{QT_STATICPLUGIN} preprocessor macro is
defined.
+ Qt platform adaptation plugins are not automatically linked in static
+ builds. To add default QPA plugin to \c QTPLUGIN variable and automatically
+ generate Q_IMPORT_PLUGIN statements for your application, add the following
+ to \c CONFIG:
+
+ \snippet code/doc_src_plugins-howto.pro 4
+
+ If the minimal QPA plugin is required, use \c qpa_minimal_plugin instead of
+ \c qpa_default_plugin.
+
\section1 Deploying and Debugging Plugins
The \l{Deploying Plugins} document covers the process of deploying