From dcb962593def256704038c7292c2df55953747b2 Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Sun, 6 Apr 2025 11:41:07 -0400 Subject: Allow caller to specify what kind of message to send with arg --- build.zig | 3 +++ 1 file changed, 3 insertions(+) (limited to 'build.zig') diff --git a/build.zig b/build.zig index 328b822..f57a948 100644 --- a/build.zig +++ b/build.zig @@ -35,6 +35,9 @@ pub fn build(b: *std.Build) void { .root_module = exe_mod, }); + const clap = b.dependency("clap", .{}); + exe.root_module.addImport("clap", clap.module("clap")); + // This declares intent for the executable to be installed into the // standard location when the user invokes the "install" step (the default // step when running `zig build`). -- cgit