Missed part about dynamic libraries.
This commit is contained in:
parent
7d00832c6a
commit
b99cd19885
|
@ -20,7 +20,7 @@ Module {
|
||||||
product.multibundle.targetApps.forEach(function(targetApp) {
|
product.multibundle.targetApps.forEach(function(targetApp) {
|
||||||
artifactNames.push(installRoot + "/" + targetApp + ".app/Contents/Frameworks/" + fileName);
|
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 +
|
artifactNames.push(installRoot + "/" + targetApp + ".app/Contents/Frameworks/" + fileName +
|
||||||
product.cpp.debugInfoBundleSuffix);
|
product.cpp.debugInfoBundleSuffix);
|
||||||
});
|
});
|
||||||
|
@ -48,7 +48,7 @@ Module {
|
||||||
"destination": installRoot + "/" + targetApp + ".app/Contents/Frameworks/" + fileName
|
"destination": installRoot + "/" + targetApp + ".app/Contents/Frameworks/" + fileName
|
||||||
});
|
});
|
||||||
|
|
||||||
if (product.installDebugInformation)
|
if (product.installDebugInformation && !(buildconfig.useConanPackages && buildconfig.conanCrashReportingEnabled))
|
||||||
data.push({
|
data.push({
|
||||||
"source" : product.buildDirectory + "/" + fileName + product.cpp.debugInfoBundleSuffix,
|
"source" : product.buildDirectory + "/" + fileName + product.cpp.debugInfoBundleSuffix,
|
||||||
"destination": installRoot + "/" + targetApp + ".app/Contents/Frameworks/" + fileName +
|
"destination": installRoot + "/" + targetApp + ".app/Contents/Frameworks/" + fileName +
|
||||||
|
@ -79,7 +79,7 @@ Module {
|
||||||
product.multibundle.targetApps.forEach(function(targetApp) {
|
product.multibundle.targetApps.forEach(function(targetApp) {
|
||||||
artifactNames.push(installRoot + "/" + targetApp + ".app/Contents/MacOS/" + input.fileName);
|
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" +
|
artifactNames.push(installRoot + "/" + targetApp + ".app/Contents/MacOS/" + input.fileName + ".app" +
|
||||||
product.cpp.debugInfoBundleSuffix);
|
product.cpp.debugInfoBundleSuffix);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user