diff options
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -23,6 +23,8 @@ pub fn build(b: *std.Build) void { .target = target, .optimize = optimize, }); + exe.linkLibC(); + exe.linkSystemLibrary("curl"); // This declares intent for the executable to be installed into the // standard location when the user invokes the "install" step (the default |