diff options
| author | Robby Zambito <contact@robbyzambito.me> | 2025-11-13 16:37:22 -0500 |
|---|---|---|
| committer | Robby Zambito <contact@robbyzambito.me> | 2025-11-18 13:23:08 -0500 |
| commit | 432b06fc6a09a5a8540335db5b9e5471b8e11f85 (patch) | |
| tree | c468aa46a6a4f3964e1001a1cd0bc19b416f2d3d /build.zig | |
| parent | 69dfe44a96a8efcdef4294dc064750cc768a27ea (diff) | |
Add clap dependency
Will be used for argument parsing
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -83,6 +83,9 @@ pub fn build(b: *std.Build) void { }), }); + const clap = b.dependency("clap", .{}); + exe.root_module.addImport("clap", clap.module("clap")); + // This declares intent for the executable to be installed into the // install prefix when running `zig build` (i.e. when executing the default // step). By default the install prefix is `zig-out/` but can be overridden |
