-
Notifications
You must be signed in to change notification settings - Fork 37
/
build.zig.zon
39 lines (39 loc) · 1.67 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
.{
.name = "dvui",
.version = "0.1.0",
.paths = .{""},
.dependencies = .{
.sdl = .{
.url = "https://github.com/allyourcodebase/SDL/archive/a9107e9ab042a2d6c76c73c0a485352ccb216ffc.tar.gz",
.hash = "1220fb0249c15493882350f135bc8b56c389a7f5131cc1b1a5208db472fa00e26b52",
.lazy = true,
},
.sdl3 = .{
.lazy = true,
.url = "https://github.com/swan-www/zig_sdl3/archive/refs/tags/3.1.6.tar.gz",
.hash = "12203db5d6acf22b69b929ee32194e6352ca9406f0192e7d72dbc2907a1df4e32d8c",
},
.freetype = .{
.url = "https://github.com/david-vanderson/freetype/archive/a62b6192d81952e64b8c16504427f3e28ef10e5f.tar.gz",
.hash = "12203988c200e30d2fbc2678bb3e49eb3f117cc79faf8d228b63e54d8cdf278378e1",
.lazy = true,
},
.raylib = .{
.url = "https://github.com/raysan5/raylib/archive/63ae57d2e31afa8bc8cab7f17f0e44afa4e7552d.tar.gz",
.hash = "122078aed9bcba3e2319105d04324bf923a52c65405c3662457cf73e7ef28f445e52",
.lazy = true,
},
//used in the raylib-ontop example
.raygui = .{
.url = "https://github.com/raysan5/raygui/archive/33f1659.tar.gz",
.hash = "12205f060d3476715771890d6e30bc052ca2d420dcae7875db2a4bd876ac506008a9",
.lazy = true,
},
// required for the directx11 backend
.zigwin32 = .{
.url = "git+https://github.com/marlersoft/zigwin32#407a4c7b869ee3d10db520fdfae8b9faf9b2adb5",
.hash = "1220cc9c9028e20f4ec2ece1155ae3479acc1cc509f9ab93acb74e8f5bbf8eefd2a9",
.lazy = true,
},
},
}