aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorMartin Ashby <martin@ashbysoft.com>2023-09-10 23:35:03 +0100
committerMartin Ashby <martin@ashbysoft.com>2023-09-10 23:35:03 +0100
commitfb802f3de42fe8d3efc3373073e92f91e27b5ad0 (patch)
tree110b1976878e1fb5f2729e3e033fdc56cd3c43b5 /build.zig
parent152b5eb76d40a501ae58a63cd0daf5237580a3b9 (diff)
downloadmcl-fb802f3de42fe8d3efc3373073e92f91e27b5ad0.tar.gz
mcl-fb802f3de42fe8d3efc3373073e92f91e27b5ad0.tar.bz2
mcl-fb802f3de42fe8d3efc3373073e92f91e27b5ad0.tar.xz
mcl-fb802f3de42fe8d3efc3373073e92f91e27b5ad0.zip
add test for manifest
use libcurl instead of zig http client :'( Download all libraries
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