diff --git a/build.zig b/build.zig index b48cd6ea7daef73921f16c72c12de62f46d5732c..1f8865c4186ba4e739db5f6fe1c1f34038ae1016 100644 --- a/build.zig +++ b/build.zig @@ -16,6 +16,7 @@ pub fn build(b: *std.Build) void { tests.use_llvm = !disable_llvm; tests.use_lld = !disable_llvm; deps.addAllTo(tests); + b.getInstallStep().dependOn(&tests.step); const test_step = b.step("test", "Run all library tests"); const tests_run = b.addRunArtifact(tests);