summaryrefslogtreecommitdiffstats
path: root/src/windeployqt/main.cpp
diff options
context:
space:
mode:
authorChristian Stromme <christian.stromme@qt.io>2017-10-13 15:45:03 +0200
committerChristian Stromme <christian.stromme@qt.io>2018-01-27 08:59:31 +0000
commit041ae9c520a7c8ca2d359522460f796f2d8df1ad (patch)
tree68491364b5504da9e4b639943e911b9215993a92 /src/windeployqt/main.cpp
parentcdca8a5af3dfd1a56c2c070f8b9b25717168324f (diff)
windeployqt: Add QtWebView module
Add library and plugin directory. Change-Id: Ib232de3df5bc98b99ee237818ea7a521df5579f3 Reviewed-by: Christian Stromme <christian.stromme@qt.io>
Diffstat (limited to 'src/windeployqt/main.cpp')
-rw-r--r--src/windeployqt/main.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/windeployqt/main.cpp b/src/windeployqt/main.cpp
index 0681a5aa8..86ca9e2f9 100644
--- a/src/windeployqt/main.cpp
+++ b/src/windeployqt/main.cpp
@@ -101,7 +101,8 @@ enum QtModule
QtTextToSpeechModule = 0x0000400000000000,
QtSerialBusModule = 0x0000800000000000,
QtGamePadModule = 0x0001000000000000,
- Qt3DAnimationModule = 0x0002000000000000
+ Qt3DAnimationModule = 0x0002000000000000,
+ QtWebViewModule = 0x0004000000000000
};
struct QtModuleEntry {
@@ -161,7 +162,8 @@ static QtModuleEntry qtModuleEntries[] = {
{ QtLocationModule, "geoservices", "Qt5Location", 0 },
{ QtWebChannelModule, "webchannel", "Qt5WebChannel", 0 },
{ QtTextToSpeechModule, "texttospeech", "Qt5TextToSpeech", 0 },
- { QtSerialBusModule, "serialbus", "Qt5SerialBus", 0 }
+ { QtSerialBusModule, "serialbus", "Qt5SerialBus", 0 },
+ { QtWebViewModule, "webview", "Qt5WebView", 0 }
};
static const char webKitProcessC[] = "QtWebProcess";
@@ -821,7 +823,8 @@ static const PluginModuleMapping pluginModuleMappings[] =
{"styles", QtWidgetsModule},
{"sceneparsers", Qt3DRendererModule},
{"renderplugins", Qt3DRendererModule},
- {"geometryloaders", Qt3DRendererModule}
+ {"geometryloaders", Qt3DRendererModule},
+ {"webview", QtWebViewModule}
};
static inline quint64 qtModuleForPlugin(const QString &subDirName)