diff options
author | Mårten Nordheim <[email protected]> | 2022-11-22 13:33:52 +0100 |
---|---|---|
committer | Mårten Nordheim <[email protected]> | 2022-12-07 18:31:49 +0000 |
commit | effd3b4d83703996f30e85d113efe16771024e37 (patch) | |
tree | 121c57e11d23d89423914210916d964b034839e4 | |
parent | 3465b9fe74d42743ffa9d8f3d24418827ade9ea7 (diff) |
macdeployqt: Add networkinformation as plugins to be deployed
This was missed during original patch
Pick-to: 6.4
Fixes: QTBUG-108677
Change-Id: Icd8960f2f41468dc12c3269b12df777acd962753
Reviewed-by: Timur Pocheptsov <[email protected]>
-rw-r--r-- | src/tools/macdeployqt/shared/shared.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/macdeployqt/shared/shared.cpp b/src/tools/macdeployqt/shared/shared.cpp index 5aad17f9e9c..8df6199abe2 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); |