diff options
| author | 2020-11-10 18:53:57 +0100 | |
|---|---|---|
| committer | 2020-11-10 18:53:57 +0100 | |
| commit | b7e6ebf36e2ac4314e6bff65f1d64466ea82a18a (patch) | |
| tree | f979a760149f4c7a2d9b9113a872d8d7e6d56bef /build.zig | |
| parent | Update ci to use 0.7.0 (diff) | |
| download | zig-clap-b7e6ebf36e2ac4314e6bff65f1d64466ea82a18a.tar.gz zig-clap-b7e6ebf36e2ac4314e6bff65f1d64466ea82a18a.tar.xz zig-clap-b7e6ebf36e2ac4314e6bff65f1d64466ea82a18a.zip | |
Deprecate ComptimeClap in favor of parseExv0.3.0
Diffstat (limited to '')
| -rw-r--r-- | build.zig | 3 |
1 files changed, 1 insertions, 2 deletions
| @@ -32,8 +32,8 @@ pub fn build(b: *Builder) void { | |||
| 32 | const example_step = b.step("examples", "Build examples"); | 32 | const example_step = b.step("examples", "Build examples"); |
| 33 | inline for ([_][]const u8{ | 33 | inline for ([_][]const u8{ |
| 34 | "simple", | 34 | "simple", |
| 35 | "simple-ex", | ||
| 35 | //"simple-error", | 36 | //"simple-error", |
| 36 | "comptime-clap", | ||
| 37 | "streaming-clap", | 37 | "streaming-clap", |
| 38 | "help", | 38 | "help", |
| 39 | "usage", | 39 | "usage", |
| @@ -70,7 +70,6 @@ fn readMeStep(b: *Builder) *std.build.Step { | |||
| 70 | try stream.print(@embedFile("example/README.md.template"), .{ | 70 | try stream.print(@embedFile("example/README.md.template"), .{ |
| 71 | @embedFile("example/simple.zig"), | 71 | @embedFile("example/simple.zig"), |
| 72 | @embedFile("example/simple-error.zig"), | 72 | @embedFile("example/simple-error.zig"), |
| 73 | @embedFile("example/comptime-clap.zig"), | ||
| 74 | @embedFile("example/streaming-clap.zig"), | 73 | @embedFile("example/streaming-clap.zig"), |
| 75 | @embedFile("example/help.zig"), | 74 | @embedFile("example/help.zig"), |
| 76 | @embedFile("example/usage.zig"), | 75 | @embedFile("example/usage.zig"), |