summaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorRobby Zambito <contact@robbyzambito.me>2025-04-06 11:41:07 -0400
committerRobby Zambito <contact@robbyzambito.me>2025-04-06 13:08:09 -0400
commitdcb962593def256704038c7292c2df55953747b2 (patch)
treea9bb386950ed47a2bb98092836457691cf03da52 /build.zig
parentc2f8c77c52deac1ce035991e83ad278cc954557a (diff)
Allow caller to specify what kind of message to send with arg
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig3
1 files changed, 3 insertions, 0 deletions
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`).