Missed part about dynamic libraries.

This commit is contained in:
Roman Telezhynskyi 2024-04-03 19:09:51 +03:00
parent 7d00832c6a
commit b99cd19885

View File

@ -20,7 +20,7 @@ Module {
product.multibundle.targetApps.forEach(function(targetApp) {
artifactNames.push(installRoot + "/" + targetApp + ".app/Contents/Frameworks/" + fileName);
if (product.installDebugInformation)
if (product.installDebugInformation && !(buildconfig.useConanPackages && buildconfig.conanCrashReportingEnabled))
artifactNames.push(installRoot + "/" + targetApp + ".app/Contents/Frameworks/" + fileName +
product.cpp.debugInfoBundleSuffix);
});
@ -48,7 +48,7 @@ Module {
"destination": installRoot + "/" + targetApp + ".app/Contents/Frameworks/" + fileName
});
if (product.installDebugInformation)
if (product.installDebugInformation && !(buildconfig.useConanPackages && buildconfig.conanCrashReportingEnabled))
data.push({
"source" : product.buildDirectory + "/" + fileName + product.cpp.debugInfoBundleSuffix,
"destination": installRoot + "/" + targetApp + ".app/Contents/Frameworks/" + fileName +
@ -79,7 +79,7 @@ Module {
product.multibundle.targetApps.forEach(function(targetApp) {
artifactNames.push(installRoot + "/" + targetApp + ".app/Contents/MacOS/" + input.fileName);
if (product.installDebugInformation)
if (product.installDebugInformation && !(buildconfig.useConanPackages && buildconfig.conanCrashReportingEnabled))
artifactNames.push(installRoot + "/" + targetApp + ".app/Contents/MacOS/" + input.fileName + ".app" +
product.cpp.debugInfoBundleSuffix);
});