Allow caller to specify what kind of message to send with arg

This commit is contained in:
2025-04-06 11:41:07 -04:00
parent c2f8c77c52
commit dcb962593d
3 changed files with 48 additions and 22 deletions

View File

@@ -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`).