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