summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Gaist <samuel.gaist@edeltech.ch>2017-11-09 23:45:48 +0100
committerSamuel Gaist <samuel.gaist@edeltech.ch>2018-01-12 14:12:17 +0000
commite2a971c07422f70436930e71b80c12c5c4e313e1 (patch)
tree5fddd0fb5340ca2512480c6bdcc330e08242cef9
parente44c9c4fc1f0fdb20aed13cc2adab3757b1d67f8 (diff)
downloadqttools-e2a971c07422f70436930e71b80c12c5c4e313e1.tar.gz
windeployqt: Add deployment of the Qt3DAnimation dll
Windeployqt currently doesn't deploy the Qt3DAnimation dll when the module is used. This patch fixes this. [ChangeLog][Windows][deployment] The Qt3DAnimation dll is now deployed when the module is used. Change-Id: Ibff744192f6a3e028bb096e33f596cba948b229b 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 235080f5c..6d6d5e5df 100644
--- a/src/windeployqt/main.cpp
+++ b/src/windeployqt/main.cpp
@@ -100,7 +100,8 @@ enum QtModule
QtWebChannelModule = 0x0000200000000000,
QtTextToSpeechModule = 0x0000400000000000,
QtSerialBusModule = 0x0000800000000000,
- QtGamePadModule = 0x0001000000000000
+ QtGamePadModule = 0x0001000000000000,
+ Qt3DAnimationModule = 0x0002000000000000
};
struct QtModuleEntry {
@@ -156,6 +157,7 @@ static QtModuleEntry qtModuleEntries[] = {
{ Qt3DQuickModule, "3dquick", "Qt53DQuick", 0 },
{ Qt3DQuickRendererModule, "3dquickrenderer", "Qt53DQuickRender", 0 },
{ Qt3DInputModule, "3dinput", "Qt53DInput", 0 },
+ { Qt3DAnimationModule, "3danimation", "Qt53DAnimation", 0 },
{ QtLocationModule, "geoservices", "Qt5Location", 0 },
{ QtWebChannelModule, "webchannel", "Qt5WebChannel", 0 },
{ QtTextToSpeechModule, "texttospeech", "Qt5TextToSpeech", 0 },