-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.zig.zon
More file actions
54 lines (51 loc) · 1.2 KB
/
build.zig.zon
File metadata and controls
54 lines (51 loc) · 1.2 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
.{
.name = .fimo,
.version = "0.2.0-dev",
.minimum_zig_version = "0.14.0",
.dependencies = .{
.@"tools/build-internals" = .{
.path = "tools/build-internals",
},
.@"exe/profiler" = .{
.path = "exes/profiler",
},
.@"pkg/fimo_std" = .{
.path = "pkgs/fimo_std",
},
.@"pkg/fimo_tasks_meta" = .{
.path = "pkgs/fimo_tasks_meta",
},
.@"pkg/fimo_worlds_meta" = .{
.path = "pkgs/fimo_worlds_meta",
},
.@"module/fimo_tasks" = .{
.path = "modules/fimo_tasks",
},
.@"module/fimo_worlds" = .{
.path = "modules/fimo_worlds",
},
},
.fingerprint = 0x7551ee4fd1f40ebd,
.paths = .{
".cargo",
"cmake",
"ffi_library",
"modules",
"python",
"rust",
"src",
".clang-tidy",
".gitattributes",
".gitignore",
".gitmodules",
"build.zig",
"build.zig.zon",
"Cargo.toml",
"CMakeLists.txt",
"COPYRIGHT.md",
"LICENSE-APACHE",
"LICENSE-MIT",
"requirements.txt",
"tsan",
},
}