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>
This commit is contained in:
parent
a43845b75a
commit
61a4880cb3
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user