summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Shaw <andy.shaw@theqtcompany.com>2015-07-27 15:52:30 +0200
committerAndy Shaw <andy.shaw@theqtcompany.com>2015-07-27 14:19:55 +0000
commit6a5c7396a59f8e8e01335d389a15144d02a4c756 (patch)
tree64e674468885f13a69b567cdc8c4a9a9cdb724f9
parent1993bf253f663e12572fc12b6d0d9100241d352a (diff)
downloadqttools-6a5c7396a59f8e8e01335d389a15144d02a4c756.tar.gz
windeployqt: Add QtWebChannel as a module that can be specified
Change-Id: I76d7b871facf27af15036cfa48e4e7881a42aec2 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@theqtcompany.com>
-rw-r--r--src/windeployqt/main.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/windeployqt/main.cpp b/src/windeployqt/main.cpp
index f111df931..753c54895 100644
--- a/src/windeployqt/main.cpp
+++ b/src/windeployqt/main.cpp
@@ -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";