mirror of
https://github.com/Not-Nik/raylib-zig.git
synced 2025-09-09 03:57:29 +00:00

- Is now possible to switch platform - Forwarded option structs from raylib build.zig - raygui build step depends on raylib build.zig
29 lines
898 B
Zig
29 lines
898 B
Zig
.{
|
|
.name = "raylib-zig",
|
|
.version = "5.6.0-dev",
|
|
.dependencies = .{
|
|
.raylib = .{
|
|
.url = "git+https://github.com/raysan5/raylib#783ca612ccfe6f291998bbbe50480c0531659b7f",
|
|
.hash = "1220c644102509a37c894615c3fb51f603cce98a66a9701b28d43776edf4be3e8140",
|
|
},
|
|
.raygui = .{
|
|
.url = "https://github.com/raysan5/raygui/archive/1e03efca48c50c5ea4b4a053d5bf04bad58d3e43.tar.gz",
|
|
.hash = "122062b24f031e68f0d11c91dfc32aed5baf06caf26ed3c80ea1802f9e788ef1c358",
|
|
},
|
|
},
|
|
.minimum_zig_version = "0.13.0",
|
|
.paths = .{
|
|
"build.zig",
|
|
"build.zig.zon",
|
|
"emcc.zig",
|
|
"lib/raylib.zig",
|
|
"lib/raylib-ext.zig",
|
|
"lib/raymath.zig",
|
|
"lib/raymath-ext.zig",
|
|
"lib/rlgl.zig",
|
|
"lib/rlgl-ext.zig",
|
|
"lib/raygui.zig",
|
|
"lib/raygui-ext.zig",
|
|
},
|
|
}
|