-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.zig.zon
26 lines (24 loc) · 1.02 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
.{
.name = "zhadertoy",
.version = "0.0.0",
.dependencies = .{
.mach = .{
.url = "https://github.com/hexops/mach/archive/refs/heads/0.4.tar.gz",
.hash = "1220203cdb9c66998abf55c99d4c84a78f11a7d0db2992adf3840a24f2d2bb829edc",
},
.zig_imgui = .{
.url = "https://github.com/foxnne/zig-imgui/archive/d5790495da5ec0282aa65e7eecf541f951afb44f.tar.gz",
.hash = "1220b58e522bd5c9995ababaf50771bab62cd9e1a3908dcb1b25ec42510770854cc1",
},
},
// Specifies the set of files and directories that are included in this package.
// Only files and directories listed here are included in the `hash` that
// is computed for this package.
// Paths are relative to the build root. Use the empty string (`""`) to refer to
// the build root itself.
// A directory listed here means that all files within, recursively, are included.
.paths = .{
// This makes *all* files, recursively, included in this package.
"",
},
}