summaryrefslogtreecommitdiffstats
path: root/src/tools/windeployqt/main.cpp
diff options
context:
space:
mode:
authorTimothée Keller <timothee.keller@qt.io>2022-10-25 11:02:03 +0200
committerTimothée Keller <timothee.keller@qt.io>2022-10-27 19:34:58 +0200
commit61a4880cb39e145d9b8e6f78fa70bfc0d69d4904 (patch)
treea0b717eb917d00589118e7e386fe303ec50f3d2e /src/tools/windeployqt/main.cpp
parenta43845b75a3eaed9cb0a323a9694c34a601286fb (diff)
Windeployqt command line module expansion
Added command line option for passing core5compat module in windeployqt Task-number: QTBUG-104845 Pick-to: 6.2 6.4 Change-Id: I6a0e13532edac4580e03d83be79f7db4ac54e3bf Reviewed-by: André de la Rocha <andre.rocha@qt.io> Reviewed-by: Oliver Wolff <oliver.wolff@qt.io>
Diffstat (limited to 'src/tools/windeployqt/main.cpp')
-rw-r--r--src/tools/windeployqt/main.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/tools/windeployqt/main.cpp b/src/tools/windeployqt/main.cpp
index ed60f59e11..0566b578fd 100644
--- a/src/tools/windeployqt/main.cpp
+++ b/src/tools/windeployqt/main.cpp
@@ -89,7 +89,8 @@ enum QtModule
QtWebViewModule = 0x0004000000000000,
Qt3DExtrasModule = 0x0008000000000000,
QtShaderToolsModule = 0x0010000000000000,
- QtUiToolsModule = 0x0020000000000000
+ QtUiToolsModule = 0x0020000000000000,
+ QtCore5CompatModule = 0x0040000000000000
};
struct QtModuleEntry {
@@ -151,7 +152,8 @@ static QtModuleEntry qtModuleEntries[] = {
{ QtSerialBusModule, "serialbus", "Qt6SerialBus", nullptr },
{ QtWebViewModule, "webview", "Qt6WebView", nullptr },
{ QtShaderToolsModule, "shadertools", "Qt6ShaderTools", nullptr },
- { QtUiToolsModule, "uitools", "Qt6UiTools", nullptr }
+ { QtUiToolsModule, "uitools", "Qt6UiTools", nullptr },
+ { QtCore5CompatModule, "core5compat", "Qt6Core5Compat", nullptr}
};
enum QtPlugin {