diff options
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -30,6 +30,11 @@ pub fn build(b: *std.Build) void { epoll.root_module.addImport("lmdb", lmdb_mod); epoll.linkLibC(); + const http = b.dependency("http", .{ .target = target, .optimize = optimize }); + const http_mod = http.module("http"); + // lmdb_mod.omit_frame_pointer = false; + exe.root_module.addImport("http", http_mod); + b.installArtifact(exe); const run_cmd = b.addRunArtifact(exe); |
