diff options
author | Robby Zambito <contact@robbyzambito.me> | 2025-04-02 17:27:46 -0400 |
---|---|---|
committer | Robby Zambito <contact@robbyzambito.me> | 2025-04-06 13:08:09 -0400 |
commit | a0bea9311fbbabf3c775591d57edba8a033a25e0 (patch) | |
tree | ac41ea0cccd4af6b9a66fbc8f256c367e0cc8d68 /build.zig | |
parent | ffcade6088c7ec21452daaece2c2541b5cc87a47 (diff) |
Added network dep
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -26,6 +26,8 @@ pub fn build(b: *std.Build) void { .optimize = optimize, }); + exe_mod.addImport("network", b.dependency("network", .{}).module("network")); + // This creates another `std.Build.Step.Compile`, but this one builds an executable // rather than a static library. const exe = b.addExecutable(.{ |