windeployqt: Add QtWebChannel as a module that can be specified
authorAndy Shaw <andy.shaw@theqtcompany.com>
Mon, 27 Jul 2015 13:52:30 +0000 (15:52 +0200)
committerAndy Shaw <andy.shaw@theqtcompany.com>
Mon, 27 Jul 2015 14:19:55 +0000 (14:19 +0000)
Change-Id: I76d7b871facf27af15036cfa48e4e7881a42aec2
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@theqtcompany.com>
src/windeployqt/main.cpp

index f111df9..753c548 100644 (file)
@@ -100,7 +100,8 @@ enum QtModule
     Qt3DQuickModule           = 0x080000000000,
     Qt3DQuickRendererModule   = 0x100000000000,
     Qt3DInputModule           = 0x200000000000,
-    QtLocationModule          = 0x400000000000
+    QtLocationModule          = 0x400000000000,
+    QtWebChannelModule        = 0x800000000000
 };
 
 struct QtModuleEntry {
@@ -156,7 +157,8 @@ QtModuleEntry qtModuleEntries[] = {
     { Qt3DQuickModule, "3dquick", "Qt53DQuick", 0 },
     { Qt3DQuickRendererModule, "3dquickrenderer", "Qt53DQuickRenderer", 0 },
     { Qt3DInputModule, "3dinput", "Qt53DInput", 0 },
-    { QtLocationModule, "geoservices", "Qt5Location", 0 }
+    { QtLocationModule, "geoservices", "Qt5Location", 0 },
+    { QtWebChannelModule, "webchannel", "Qt5WebChannel", 0 }
 };
 
 static const char webKitProcessC[] = "QtWebProcess";