chore: update build.zig

This commit is contained in:
Rekai Nyangadzayi Musuka 2023-05-01 23:59:51 -05:00
parent d5e66caf21
commit d794a57b4e
1 changed files with 7 additions and 4 deletions

View File

@ -27,18 +27,21 @@ pub fn build(b: *std.Build) void {
// This declares intent for the library to be installed into the standard // This declares intent for the library to be installed into the standard
// location when the user invokes the "install" step (the default step when // location when the user invokes the "install" step (the default step when
// running `zig build`). // running `zig build`).
lib.install(); b.installArtifact(lib);
// Creates a step for unit testing. // Creates a step for unit testing. This only builds the test executable
// but does not run it.
const main_tests = b.addTest(.{ const main_tests = b.addTest(.{
.root_source_file = .{ .path = "src/main.zig" }, .root_source_file = .{ .path = "src/lib.zig" },
.target = target, .target = target,
.optimize = optimize, .optimize = optimize,
}); });
const run_main_tests = b.addRunArtifact(main_tests);
// This creates a build step. It will be visible in the `zig build --help` menu, // This creates a build step. It will be visible in the `zig build --help` menu,
// and can be selected like this: `zig build test` // and can be selected like this: `zig build test`
// This will evaluate the `test` step rather than the default, which is "install". // This will evaluate the `test` step rather than the default, which is "install".
const test_step = b.step("test", "Run library tests"); const test_step = b.step("test", "Run library tests");
test_step.dependOn(&main_tests.step); test_step.dependOn(&run_main_tests.step);
} }