From 18763983e2eadfac417c57110c6c21c1b453b560 Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Wed, 2 Apr 2025 17:27:46 -0400 Subject: Added network dep --- build.zig | 2 ++ 1 file changed, 2 insertions(+) (limited to 'build.zig') diff --git a/build.zig b/build.zig index 72336f1..328b822 100644 --- a/build.zig +++ b/build.zig @@ -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(.{ -- cgit