Skip to content

Commit

Permalink
build: remove unneeded build options
Browse files Browse the repository at this point in the history
  • Loading branch information
DISTREAT committed Aug 3, 2023
1 parent 5da686b commit 6a373b1
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,9 @@ pub fn build(b: *std.build.Builder) void {
exe_run.addArgs(args);
}

const lib_step = b.step("lib", "Build the library");
const tests_step = b.step("test", "Run all unit tests");
const exe_step = b.step("exe", "Build the executable");
const exe_run_step = b.step("run", "Run the executable");

lib_step.dependOn(&lib.step);
tests_step.dependOn(&tests.step);
exe_step.dependOn(&exe.step);
exe_run_step.dependOn(&exe_run.step);
}

0 comments on commit 6a373b1

Please sign in to comment.