From 637a2068109464f8912d228351387cd77155c6cf Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Wed, 3 Apr 2024 19:31:24 +0300 Subject: [PATCH] Fix build script. --- qbs/modules/multibundle/multibundle.qbs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/qbs/modules/multibundle/multibundle.qbs b/qbs/modules/multibundle/multibundle.qbs index 6d0cfd125..30c28b8df 100644 --- a/qbs/modules/multibundle/multibundle.qbs +++ b/qbs/modules/multibundle/multibundle.qbs @@ -20,7 +20,7 @@ Module { product.multibundle.targetApps.forEach(function(targetApp) { artifactNames.push(installRoot + "/" + targetApp + ".app/Contents/Frameworks/" + fileName); - if (product.installDebugInformation && !(buildconfig.useConanPackages && buildconfig.conanCrashReportingEnabled)) + if (product.installDebugInformation && !(product.buildconfig.useConanPackages && product.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 && !(buildconfig.useConanPackages && buildconfig.conanCrashReportingEnabled)) + if (product.installDebugInformation && !(product.buildconfig.useConanPackages && product.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 && !(buildconfig.useConanPackages && buildconfig.conanCrashReportingEnabled)) + if (product.installDebugInformation && !(product.buildconfig.useConanPackages && product.buildconfig.conanCrashReportingEnabled)) artifactNames.push(installRoot + "/" + targetApp + ".app/Contents/MacOS/" + input.fileName + ".app" + product.cpp.debugInfoBundleSuffix); }); @@ -107,7 +107,7 @@ Module { "destination": installRoot + "/" + targetApp + ".app/Contents/MacOS/" + input.fileName }); - if (product.installDebugInformation && !(buildconfig.useConanPackages && buildconfig.conanCrashReportingEnabled)) + if (product.installDebugInformation && !(product.buildconfig.useConanPackages && product.buildconfig.conanCrashReportingEnabled)) data.push({ "source" : product.buildDirectory + "/" + input.fileName + ".app" + product.cpp.debugInfoBundleSuffix, "destination": installRoot + "/" + targetApp + ".app/Contents/MacOS/" + fileName +