From 7d00832c6a1e8c7a50e5ff223f7d3f9765d4e379 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Wed, 3 Apr 2024 18:47:50 +0300 Subject: [PATCH] Improvements for signlebundle. Don't copy debug files inside a bundle when build with crash reports. --- qbs/modules/multibundle/multibundle.qbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbs/modules/multibundle/multibundle.qbs b/qbs/modules/multibundle/multibundle.qbs index 1b511557e..a7aa792b6 100644 --- a/qbs/modules/multibundle/multibundle.qbs +++ b/qbs/modules/multibundle/multibundle.qbs @@ -107,7 +107,7 @@ Module { "destination": installRoot + "/" + targetApp + ".app/Contents/MacOS/" + input.fileName }); - if (product.installDebugInformation) + if (product.installDebugInformation && !(buildconfig.useConanPackages && buildconfig.conanCrashReportingEnabled)) data.push({ "source" : product.buildDirectory + "/" + input.fileName + ".app" + product.cpp.debugInfoBundleSuffix, "destination": installRoot + "/" + targetApp + ".app/Contents/MacOS/" + fileName +