diff --git a/build.zig b/build.zig index 0fb490189aa3ade0fda5498d8cc97b7bbb6301b7..bef734551e7e557e5d0b213d266b4ef24965024a 100644 --- a/build.zig +++ b/build.zig @@ -1,7 +1,6 @@ const std = @import("std"); -const Builder = std.build.Builder; -pub fn build(b: *Builder) void { +pub fn build(b: *std.Build) void { const target = b.standardTargetOptions(.{}); const mode = b.option(std.builtin.Mode, "mode", "") orelse .Debug; @@ -19,6 +18,6 @@ pub fn build(b: *Builder) void { run_cmd.addArgs(args); } - const run_step = b.step("test", "Run the app"); + const run_step = b.step("run", "Run the app"); run_step.dependOn(&run_cmd.step); }