mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 07:46:12 +03:00
14 lines
327 B
Zig
14 lines
327 B
Zig
const std = @import("std");
|
|
|
|
pub fn build(b: *std.Build) !void {
|
|
const target = b.standardTargetOptions(.{});
|
|
const optimize = b.standardOptimizeOption(.{});
|
|
_ = target;
|
|
_ = optimize;
|
|
}
|
|
|
|
pub fn addPaths(b: *std.Build, step: *std.Build.Step.Compile) !void {
|
|
_ = b;
|
|
@import("macos_sdk").addPaths(step);
|
|
}
|