From fb802f3de42fe8d3efc3373073e92f91e27b5ad0 Mon Sep 17 00:00:00 2001 From: Martin Ashby Date: Sun, 10 Sep 2023 23:35:03 +0100 Subject: add test for manifest use libcurl instead of zig http client :'( Download all libraries --- build.zig | 2 ++ 1 file changed, 2 insertions(+) (limited to 'build.zig') 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 -- cgit v1.2.3-ZIG