diff options
author | Robby Zambito <contact@robbyzambito.me> | 2025-04-06 11:41:07 -0400 |
---|---|---|
committer | Robby Zambito <contact@robbyzambito.me> | 2025-04-06 13:08:09 -0400 |
commit | dcb962593def256704038c7292c2df55953747b2 (patch) | |
tree | a9bb386950ed47a2bb98092836457691cf03da52 /build.zig | |
parent | c2f8c77c52deac1ce035991e83ad278cc954557a (diff) |
Allow caller to specify what kind of message to send with arg
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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`). |