diff options
| author | 2018-06-08 13:45:13 +0200 | |
|---|---|---|
| committer | 2018-06-08 13:45:13 +0200 | |
| commit | 2a3cee87250a2f81646f384b28779d972598b1f7 (patch) | |
| tree | 620a78d792886aaf72fd7c89f8e2388fcff2e3c7 /build.zig | |
| parent | Removed unused funcs in extended tests (diff) | |
| download | zig-clap-2a3cee87250a2f81646f384b28779d972598b1f7.tar.gz zig-clap-2a3cee87250a2f81646f384b28779d972598b1f7.tar.xz zig-clap-2a3cee87250a2f81646f384b28779d972598b1f7.zip | |
Removed the settings param
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 5 |
1 files changed, 1 insertions, 4 deletions
| @@ -5,10 +5,7 @@ pub fn build(b: *Builder) void { | |||
| 5 | 5 | ||
| 6 | { | 6 | { |
| 7 | const example_step = b.step("examples", "Build all examples"); | 7 | const example_step = b.step("examples", "Build all examples"); |
| 8 | const examples = [][]const u8 { | 8 | const examples = [][]const u8 {}; |
| 9 | "core", | ||
| 10 | "extended", | ||
| 11 | }; | ||
| 12 | 9 | ||
| 13 | b.default_step.dependOn(example_step); | 10 | b.default_step.dependOn(example_step); |
| 14 | inline for (examples) |example| { | 11 | inline for (examples) |example| { |