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);