mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 11:17:05 -04:00

* Add libraries for macos + deps_local * Tab characters * build.zig.zon: MacOS comment, use relative path * build.zig.zon: Add dot to url field * build.zig: lazily load deps_local * build.zig: revert bad debug edit
17 lines
482 B
Zig
17 lines
482 B
Zig
.{
|
|
.name = "Cubyzig",
|
|
.version = "0.0.0",
|
|
.paths = .{""},
|
|
.dependencies = .{
|
|
.deps_local = .{
|
|
.path = "../Cubyz-libs/zig-out", // macos has no official deps release
|
|
.lazy = true,
|
|
},
|
|
.deps = .{
|
|
//.url = "file:../Cubyz-libs/zig-out.tar.gz", // fetching the lib from the local folder
|
|
.url = "https://github.com/PixelGuys/Cubyz-libs/releases/download/2/zig-out.tar.gz",
|
|
.hash = "12201446153e8822c020a10199880fae5fac7eb3f1e3f7c7a9b653e58914fa3e2223",
|
|
},
|
|
},
|
|
}
|