summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2017-05-31 14:16:00 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2017-05-31 12:31:57 +0000
commit0e5284eef2cfe42adc3820ad614b32c3f54b8a15 (patch)
treec96bf4741828f3920ac6ead3d2f035a569600246
parent8ddafa8286ef23b180bdb11d39b5c4233c8cacab (diff)
downloadqttools-0e5284eef2cfe42adc3820ad614b32c3f54b8a15.tar.gz
windeployqt: Add Qt5GamePad with plugins
Task-number: QTBUG-61127 Change-Id: I66681129b3bbdc1b37e3c17b4e70ac4ee17bb7f3 Reviewed-by: Oliver Wolff <oliver.wolff@qt.io>
-rw-r--r--src/windeployqt/main.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/windeployqt/main.cpp b/src/windeployqt/main.cpp
index dcb655ad7..0b4af9e0b 100644
--- a/src/windeployqt/main.cpp
+++ b/src/windeployqt/main.cpp
@@ -98,7 +98,8 @@ enum QtModule
QtLocationModule = 0x0000100000000000,
QtWebChannelModule = 0x0000200000000000,
QtTextToSpeechModule = 0x0000400000000000,
- QtSerialBusModule = 0x0000800000000000
+ QtSerialBusModule = 0x0000800000000000,
+ QtGamePadModule = 0x0001000000000000
};
struct QtModuleEntry {
@@ -116,6 +117,7 @@ static QtModuleEntry qtModuleEntries[] = {
{ QtDesignerModule, "designer", "Qt5Designer", 0 },
{ QtDesignerComponents, "designercomponents", "Qt5DesignerComponents", 0 },
{ QtEnginioModule, "enginio", "Enginio", 0 },
+ { QtGamePadModule, "gamepad", "Qt5Gamepad", 0 },
{ QtGuiModule, "gui", "Qt5Gui", "qtbase" },
{ QtHelpModule, "qthelp", "Qt5Help", "qt_help" },
{ QtMultimediaModule, "multimedia", "Qt5Multimedia", "qtmultimedia" },
@@ -798,6 +800,7 @@ struct PluginModuleMapping
static const PluginModuleMapping pluginModuleMappings[] =
{
{"qml1tooling", QtDeclarativeModule},
+ {"gamepads", QtGamePadModule},
{"accessible", QtGuiModule},
{"iconengines", QtGuiModule},
{"imageformats", QtGuiModule},