aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/build.zig b/build.zig
index 21341cb..b920201 100644
--- a/build.zig
+++ b/build.zig
@@ -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