fix issue

This commit is contained in:
Blue 2023-08-13 23:53:13 -06:00
parent de4918cb56
commit c4de1da7b1

View File

@ -33,6 +33,7 @@ pub fn build(b: *std.Build) !void {
run_step.step.dependOn(&link_step.step);
const run_option = b.step("run", "Run '$PROJECT_NAME'");
run_option.dependOn(&run_step.step);
return;
}
const exe = b.addExecutable(.{ .name = "'$PROJECT_NAME'", .root_source_file = .{ .path = "src/main.zig" }, .optimize = optimize, .target = target });