We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6448db commit e97515bCopy full SHA for e97515b
build.zig
@@ -28,6 +28,10 @@ pub fn build(b: *std.Build) void {
28
.optimize = optimize,
29
.strip = strip,
30
});
31
+ if (target.result.os.tag == .windows) {
32
+ mod.linkSystemLibrary("shell32", .{});
33
+ mod.linkSystemLibrary("ole32", .{});
34
+ }
35
36
const unit_tests = b.addTest(.{
37
.root_module = mod,
0 commit comments