mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-04-15 03:52:39 +00:00
This fixes the lazyImport importing outside of the build root. The build root for the build binary is always the root `build.zig` (which we want), but our `src/build_config.zig` transitively imported SharedDeps which led to issues.
4 lines
170 B
Zig
4 lines
170 B
Zig
/// Target for xcframework builds. This is a separate file so that
|
|
/// our runtime code doesn't need to import build code.
|
|
pub const Target = enum { native, universal };
|