fix(m9): link ICCeryCore statically so the app launches standalone (#117) #118

Merged
gronod merged 1 commits from feat/117-static-iccerycore into milestone/m9-monterey 2026-09-12 09:17:24 +01:00
+4 -1
View File
@@ -5,7 +5,10 @@ let package = Package(
name: "ICCeryCore",
platforms: [.macOS(.v12)],
products: [
.library(name: "ICCeryCore", targets: ["ICCeryCore"]),
// Static so app + test bundles each link ICCeryCore directly
// a dynamic package product framework is not embedded in the
// .app and dyld kills the app at launch on macOS 12 (#117).
.library(name: "ICCeryCore", type: .static, targets: ["ICCeryCore"]),
],
targets: [
.target(name: "ICCeryCore"),