-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.zig.zon
More file actions
40 lines (39 loc) · 1.35 KB
/
build.zig.zon
File metadata and controls
40 lines (39 loc) · 1.35 KB
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
40
.{
.name = .cetech1_kernel,
.version = "0.1.0",
.minimum_zig_version = "0.16.0",
.fingerprint = 0x999557f3ebfaa97a,
.paths = .{
"docs",
"externals",
"fixtures",
"src",
"build.zig",
"build.zig.zon",
"CONTRIBUTING.md",
"README.md",
"LICENSE",
},
.dependencies = .{
//
// Externals
//
.zf = .{ .path = "externals/shared/lib/zf" },
.znfde = .{ .path = "externals/shared/lib/znfde" },
.zbgfx = .{ .path = "externals/shared/lib/zbgfx" },
.zlua = .{ .path = "externals/shared/lib/ziglua" },
.zmath = .{ .path = "externals/shared/lib/zmath" },
.ziglangSet = .{ .path = "externals/shared/lib/ziglang-set" },
// zig-gamedev
.system_sdk = .{
.url = "https://github.com/zig-gamedev/system_sdk/archive/777e76828f05d5d223df47a4c0de95ae4efde884.tar.gz",
.hash = "system_sdk-0.3.0-dev-alwUNqAaaALJ5VoZImZo3n6prezBnQnrpziun3ZeZwcp",
.lazy = true,
},
.zglfw = .{ .path = "externals/shared/lib/zglfw" },
.zflecs = .{ .path = "externals/shared/lib/zflecs" },
.ztracy = .{ .path = "externals/shared/lib/ztracy" },
.zgui = .{ .path = "externals/shared/lib/zgui" },
.zphysics = .{ .path = "externals/shared/lib/zphysics" },
},
}