aboutsummaryrefslogtreecommitdiff
path: root/build.zig.zon
blob: 3b0cd4a11deee5fb4073556dfb140dbb9bb06167 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// The Zig compiler is not intended to be consumed as a package.
// The sole purpose of this manifest file is to test the compiler.
.{
    .name = "zig",
    .version = "0.0.0",
    .dependencies = .{
        .standalone_test_cases = .{
            .path = "test/standalone",
        },
        .link_test_cases = .{
            .path = "test/link",
        },
    },
    .paths = .{""},
}