-
Notifications
You must be signed in to change notification settings - Fork 133
/
Copy pathbuild.zig.zon
28 lines (28 loc) · 905 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.5.0",
.dependencies = .{
.raylib = .{
.url = "https://github.com/raysan5/raylib/archive/c1ab645ca298a2801097931d1079b10ff7eb9df8.tar.gz",
.hash = "1220d93782859726c2c46a05450615b7edfc82b7319daac50cbc7c3345d660b022d7",
},
.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",
},
}