| ... | ... | @@ -1,7 +1,6 @@ |
| 1 | 1 | const std = @import("std"); |
| 2 | | const Builder = std.build.Builder; |
| 3 | 2 | |
| 4 | | pub fn build(b: *Builder) void { |
| 3 | pub fn build(b: *std.Build) void { |
| 5 | 4 | const target = b.standardTargetOptions(.{}); |
| 6 | 5 | const mode = b.option(std.builtin.Mode, "mode", "") orelse .Debug; |
| 7 | 6 | |
| ... | ... | @@ -19,6 +18,6 @@ pub fn build(b: *Builder) void { |
| 19 | 18 | run_cmd.addArgs(args); |
| 20 | 19 | } |
| 21 | 20 | |
| 22 | | const run_step = b.step("test", "Run the app"); |
| 21 | const run_step = b.step("run", "Run the app"); |
| 23 | 22 | run_step.dependOn(&run_cmd.step); |
| 24 | 23 | } |