forked from Not-Nik/raylib-zig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.zig.zon
28 lines (28 loc) · 903 Bytes
/
build.zig.zon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
.{
.name = "raylib-zig",
.version = "5.1.0",
.dependencies = .{
.raylib = .{
.url = "https://github.com/raysan5/raylib/archive/5767c4cd059e07355ae5588966d0aee97038a86b.tar.gz",
.hash = "1220aa75240ee6459499456ef520ab7e8bddffaed8a5055441da457b198fc4e92b26",
},
.raygui = .{
.url = "https://github.com/raysan5/raygui/archive/4b3d94f5df6a5a2aa86286350f7e20c0ca35f516.tar.gz",
.hash = "122002d98ca255ec706ef8e5497b3723d6c6e163511761d116dac3aee87747d46cf1",
}
},
.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"
},
}