Windeployqt: change platform plugin base filter

Add infix to "qwindows" for platform plugin search if it exists, to
account for libinfix builds

Task-number: QTBUG-105820
Pick-to: 6.4
Change-Id: I7a3c671fb6cdb4a216f6f4bffb445add4f8e0c83
Reviewed-by: Oliver Wolff <oliver.wolff@qt.io>
This commit is contained in:
Timothée Keller 2022-11-23 11:04:41 +01:00
parent f46c18c627
commit 832a337831

View File

@ -1024,6 +1024,8 @@ QStringList findQtPlugins(ModuleBitset *usedQtModules, const ModuleBitset &disab
case WindowsDesktopMsvc:
case WindowsDesktopMinGW:
filter = QStringLiteral("qwindows");
if (!infix.isEmpty())
filter += infix;
break;
case Unix:
filter = QStringLiteral("libqxcb");