add build.zig.zon

This commit is contained in:
Mitchell Hashimoto
2023-10-01 12:44:04 -07:00
parent 7edb86f9e1
commit 8ef10ebf4b

10
build.zig.zon Normal file
View File

@ -0,0 +1,10 @@
.{
.name = "ghostty",
.version = "0.1.0",
.dependencies = .{
.freetype = .{ .path = "./pkg/freetype" },
.harfbuzz = .{ .path = "./pkg/harfbuzz" },
.libpng = .{ .path = "./pkg/libpng" },
.zlib = .{ .path = "./pkg/zlib" },
},
}