Sign crashpad_handler on macos when create a bundle.
This commit is contained in:
parent
a892e74938
commit
291ac98c64
|
@ -218,6 +218,9 @@ VToolApp {
|
||||||
if (pdftops.pdftopsPresent)
|
if (pdftops.pdftopsPresent)
|
||||||
apps.push("pdftops");
|
apps.push("pdftops");
|
||||||
|
|
||||||
|
if (buildconfig.useConanPackages && buildconfig.conanCrashReportingEnabled)
|
||||||
|
apps.push("crashpad_handler");
|
||||||
|
|
||||||
return apps;
|
return apps;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,6 +58,18 @@ VToolApp {
|
||||||
conan.crashpad.binInstallDir: qbs.installPrefix + "/" + buildconfig.installBinaryPath
|
conan.crashpad.binInstallDir: qbs.installPrefix + "/" + buildconfig.installBinaryPath
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Properties {
|
||||||
|
condition: qbs.targetOS.contains("macos") && buildconfig.enableMultiBundle
|
||||||
|
macdeployqt.targetApps: {
|
||||||
|
var apps = [];
|
||||||
|
|
||||||
|
if (buildconfig.useConanPackages && buildconfig.conanCrashReportingEnabled)
|
||||||
|
apps.push("crashpad_handler");
|
||||||
|
|
||||||
|
return apps;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
files: [
|
files: [
|
||||||
"main.cpp",
|
"main.cpp",
|
||||||
"tkmmainwindow.cpp",
|
"tkmmainwindow.cpp",
|
||||||
|
|
|
@ -243,6 +243,9 @@ VToolApp {
|
||||||
if (pdftops.pdftopsPresent)
|
if (pdftops.pdftopsPresent)
|
||||||
apps.push("pdftops");
|
apps.push("pdftops");
|
||||||
|
|
||||||
|
if (buildconfig.useConanPackages && buildconfig.conanCrashReportingEnabled)
|
||||||
|
apps.push("crashpad_handler");
|
||||||
|
|
||||||
return apps;
|
return apps;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user