zig/build.zig.zon

16 lines
390 B
Plaintext
Raw Normal View History

// 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",
},
2024-02-17 16:47:13 +00:00
.link_test_cases = .{
.path = "test/link",
},
},
.paths = .{""},
}