diff options
author | Robby Zambito <contact@robbyzambito.me> | 2025-04-02 17:27:46 -0400 |
---|---|---|
committer | Robby Zambito <contact@robbyzambito.me> | 2025-04-02 18:08:22 -0400 |
commit | 18763983e2eadfac417c57110c6c21c1b453b560 (patch) | |
tree | ac41ea0cccd4af6b9a66fbc8f256c367e0cc8d68 /build.zig | |
parent | 3354a85c1ae6b5c47540e4e154d39996980fee79 (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(.{ |