mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-04-21 00:48:36 +03:00

Fixes #6727 The major change in this commit is to consolidate all the C imports in a single decl in main.zig. This is required for Zig 0.14. Without it, the problem in #6727 will happen. I was never able to minimize why this happens in order to open a Zig bug. Beyond this, I fixed the build.zig and build.zig.zon to work with Zig 0.14 so that we can test building `pkg/macos` in isolation. There are no downstream impacting changes in the build.zig files.
10 lines
188 B
Zig
10 lines
188 B
Zig
.{
|
|
.name = .macos,
|
|
.version = "0.1.0",
|
|
.fingerprint = 0x45e2f6107d5b2b2c,
|
|
.paths = .{""},
|
|
.dependencies = .{
|
|
.apple_sdk = .{ .path = "../apple-sdk" },
|
|
},
|
|
}
|