diff options
| author | Carl Ã…stholm <carl@astholm.se> | 2024-01-16 17:54:57 +0100 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2024-04-07 16:05:53 -0700 |
| commit | 3ed221f1494be00cc802515e33e18fdd80d41afb (patch) | |
| tree | 34d146a732d76cc3aac63e57f648c1228f240f74 /build.zig.zon | |
| parent | 05126fc4c575b833e772239426f31af23eba0d20 (diff) | |
| download | zig-3ed221f1494be00cc802515e33e18fdd80d41afb.tar.gz zig-3ed221f1494be00cc802515e33e18fdd80d41afb.zip | |
Promote standalone test cases to packages
This is a prerequisite for removing `b.anonymousDependency()`, but
having compiler tests dogfood package management might be a good idea
in general.
Diffstat (limited to 'build.zig.zon')
| -rw-r--r-- | build.zig.zon | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/build.zig.zon b/build.zig.zon new file mode 100644 index 0000000000..5fc1331d46 --- /dev/null +++ b/build.zig.zon @@ -0,0 +1,12 @@ +// 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", + }, + }, + .paths = .{""}, +} |
