summaryrefslogtreecommitdiffstats
path: root/src/tools/windeployqt/main.cpp
diff options
context:
space:
mode:
authorTimothée Keller <timothee.keller@qt.io>2022-11-23 11:04:41 +0100
committerTimothée Keller <timothee.keller@qt.io>2022-12-09 16:16:47 +0100
commit832a337831a4736a3a610764271b1ab4cf0699bd (patch)
tree985f58cf995987c6388205ddad6e96e6d430a781 /src/tools/windeployqt/main.cpp
parentf46c18c6273897edfd13d68121741ff8fe8f434f (diff)
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>
Diffstat (limited to 'src/tools/windeployqt/main.cpp')
-rw-r--r--src/tools/windeployqt/main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/windeployqt/main.cpp b/src/tools/windeployqt/main.cpp
index aa3655e388..b385d4f2da 100644
--- a/src/tools/windeployqt/main.cpp
+++ b/src/tools/windeployqt/main.cpp
@@ -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");