zig package manager - build glfw cmake project

This commit is contained in:
David Allemang
2024-03-02 17:24:54 -05:00
commit a8f2a899cd
5 changed files with 154 additions and 0 deletions

15
build.zig.zon Normal file
View File

@@ -0,0 +1,15 @@
.{
.name = "learnzig",
.version = "0.0.0",
.dependencies = .{
.glfw = .{
.url = "https://github.com/glfw/glfw/archive/refs/tags/3.4.tar.gz",
.hash = "1220c46ebcac607065f942193b82a21b87213fca4b0d50c83461f8f5e22955fcb88f",
},
},
.paths = .{
"",
},
}