We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ff37416 + c092531 commit 0a391dfCopy full SHA for 0a391df
build.zig
@@ -293,7 +293,8 @@ fn linkWindows(
293
const dll_path = try std.fs.path.join(sdk.build.allocator, &[_][]const u8{ paths.bin, dll_name });
294
defer sdk.build.allocator.free(dll_path);
295
296
- sdk.build.installBinFile(dll_path, dll_name);
+ const install_bin = sdk.build.addInstallBinFile(.{ .cwd_relative = dll_path }, dll_name);
297
+ exe.step.dependOn(&install_bin.step);
298
}
299
300
0 commit comments