diff --git a/build.zig b/build.zig index 1181056a7ba58964dff37cd7c9b31e509e48c597..c9c16ac67b4ecc9151a3f19302226cdef6d72d15 100644 --- a/build.zig +++ b/build.zig @@ -38,6 +38,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);