summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMårten Nordheim <marten.nordheim@qt.io>2022-11-22 13:33:52 +0100
committerMårten Nordheim <marten.nordheim@qt.io>2022-12-07 16:34:47 +0000
commit0d08801da2a76d2e8ce098cc2de435c78efff72f (patch)
treec3ef6f368499be8799999d77a5bc92b0853aa154
parent3e3968d0a4153d4f08a1b748f47656a4362ce6bb (diff)
macdeployqt: Add networkinformation as plugins to be deployed
This was missed during original patch Fixes: QTBUG-108677 Change-Id: Icd8960f2f41468dc12c3269b12df777acd962753 Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
-rw-r--r--src/tools/macdeployqt/shared/shared.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/macdeployqt/shared/shared.cpp b/src/tools/macdeployqt/shared/shared.cpp
index 5aad17f9e9..8df6199abe 100644
--- a/src/tools/macdeployqt/shared/shared.cpp
+++ b/src/tools/macdeployqt/shared/shared.cpp
@@ -1106,8 +1106,10 @@ void deployPlugins(const ApplicationBundleInfo &appBundleInfo, const QString &pl
const QString libInfix = getLibInfix(deploymentInfo.deployedFrameworks);
// Network
- if (deploymentInfo.containsModule("Network", libInfix))
+ if (deploymentInfo.containsModule("Network", libInfix)) {
addPlugins(QStringLiteral("tls"));
+ addPlugins(QStringLiteral("networkinformation"));
+ }
// All image formats (svg if QtSvg is used)
const bool usesSvg = deploymentInfo.containsModule("Svg", libInfix);