diff options
author | 2021-12-14 14:02:33 -0800 | |
---|---|---|
committer | 2021-12-16 19:18:51 -0800 | |
commit | 6a5dd6ed58c59d64929a87ddd1820a4cf66c957b (patch) | |
tree | bb1f3078f2221802faccc33908f521edd106b51b | |
parent | bcd68b937d12e173566e21e52140f089ddeda660 (diff) | |
download | bun-6a5dd6ed58c59d64929a87ddd1820a4cf66c957b.tar.gz bun-6a5dd6ed58c59d64929a87ddd1820a4cf66c957b.tar.zst bun-6a5dd6ed58c59d64929a87ddd1820a4cf66c957b.zip |
Update build.zig
-rw-r--r-- | build.zig | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -52,6 +52,16 @@ fn addInternalPackages(step: *std.build.LibExeObjStep, allocator: *std.mem.Alloc .name = "clap", .path = .{ .path = "src/deps/zig-clap/clap.zig" }, }); + + step.addPackage(.{ + .name = "http", + .path = .{ .path = "src/http/http_client_async.zig" }, + }); + + step.addPackage(.{ + .name = "network_thread", + .path = .{ .path = "src/http/network_thread.zig" }, + }); } fn panicIfNotFound(comptime filepath: []const u8) []const u8 { |