feat(build): add zig build script

This commit is contained in:
phaneron 2024-06-28 01:51:21 -04:00
parent 2b620905ca
commit cbd169a26a
8 changed files with 131 additions and 3 deletions

16
build.zig.zon Normal file
View file

@ -0,0 +1,16 @@
.{ .name = "bc", .version = "1.0.0", .paths = .{
"LICENSE",
"README.md",
"build.zig",
"build.zig.zon",
"bc",
}, .dependencies = .{
.system = .{
.url = "https://github.com/thunderbrewhq/system/archive/refs/heads/master.zip",
.hash = "1220d6a6e4e2f836c1c22eb128e6c74c773ea191bfbaac02601dcb5238c2b0874182",
},
.mem = .{
.url = "https://github.com/thunderbrewhq/mem/archive/refs/heads/master.zip",
.hash = "122037f90f957dec643fe16e0092c8b971b7dd0a0f8096d00fa134e254053fbced87",
},
} }