summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Shaw <andy.shaw@qt.io>2018-06-18 10:23:02 +0200
committerAndy Shaw <andy.shaw@qt.io>2018-06-19 12:19:29 +0000
commit8f3d0a6653b99c5eb7963b7fc889cb444350a4c2 (patch)
treecb6f643756b4a4109e7be5777d6454e5858db30d
parent88df9ef72695fca1f8326e2d6683dbc4028ceb92 (diff)
downloadqttools-8f3d0a6653b99c5eb7963b7fc889cb444350a4c2.tar.gz
windeployqt: Add support for Qt3DExtras module
Change-Id: Ie09a99f5d3c560768f6d284f0a8c7569aac11ea8 Reviewed-by: Oliver Wolff <oliver.wolff@qt.io>
-rw-r--r--src/windeployqt/main.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/windeployqt/main.cpp b/src/windeployqt/main.cpp
index 45e75abab..ba687c059 100644
--- a/src/windeployqt/main.cpp
+++ b/src/windeployqt/main.cpp
@@ -102,7 +102,8 @@ enum QtModule
QtSerialBusModule = 0x0000800000000000,
QtGamePadModule = 0x0001000000000000,
Qt3DAnimationModule = 0x0002000000000000,
- QtWebViewModule = 0x0004000000000000
+ QtWebViewModule = 0x0004000000000000,
+ Qt3DExtrasModule = 0x0008000000000000
};
struct QtModuleEntry {
@@ -159,6 +160,7 @@ static QtModuleEntry qtModuleEntries[] = {
{ Qt3DQuickRendererModule, "3dquickrenderer", "Qt53DQuickRender", 0 },
{ Qt3DInputModule, "3dinput", "Qt53DInput", 0 },
{ Qt3DAnimationModule, "3danimation", "Qt53DAnimation", 0 },
+ { Qt3DExtrasModule, "3dextras", "Qt53DExtras", 0 },
{ QtLocationModule, "geoservices", "Qt5Location", 0 },
{ QtWebChannelModule, "webchannel", "Qt5WebChannel", 0 },
{ QtTextToSpeechModule, "texttospeech", "Qt5TextToSpeech", 0 },