diff --git a/src/macdeployqt/shared/shared.cpp b/src/macdeployqt/shared/shared.cpp index 3ebd043..b45383b 100644 --- a/src/macdeployqt/shared/shared.cpp +++ b/src/macdeployqt/shared/shared.cpp @@ -486,6 +486,10 @@ DeploymentInfo deployQtFrameworks(QList frameworks, // Copy farmework to app bundle. const QString deployedBinaryPath = copyFramework(framework, bundlePath); + QString infoPlistPath = framework.frameworkDirectory+framework.frameworkName+"/Contents/Info.plist"; + QString plistDest = bundlePath + "/Contents/Frameworks/" + framework.frameworkName + "/Resources/Info.plist"; + copyFilePrintStatus(infoPlistPath, plistDest); + // Skip the rest if already was deployed. if (deployedBinaryPath.isNull()) continue;