ghostty/pkg/objc/build.zig
Mitchell Hashimoto dd8fde52d9 pkg/objc starting
2022-10-25 16:21:11 -07:00

11 lines
221 B
Zig

const std = @import("std");
pub const pkg = std.build.Pkg{
.name = "objc",
.source = .{ .path = thisDir() ++ "/main.zig" },
};
fn thisDir() []const u8 {
return std.fs.path.dirname(@src().file) orelse ".";
}