Feature parsing

This commit is contained in:
Robin Voetter
2020-06-11 18:10:32 +02:00
parent 09bdc206af
commit a5dbb555ab
3 changed files with 140 additions and 3 deletions

View File

@@ -9,6 +9,9 @@ pub fn build(b: *Builder) void {
test_step.dependOn(&b.addTest("generator/main.zig").step);
const run_cmd = generator.run();
if (b.args) |args| {
run_cmd.addArgs(args);
}
const run_step = b.step("run", "");
run_step.dependOn(&run_cmd.step);