diff options
| author | Robby Zambito <contact@robbyzambito.me> | 2025-11-29 21:20:56 -0500 |
|---|---|---|
| committer | Robby Zambito <contact@robbyzambito.me> | 2025-11-29 22:46:29 -0500 |
| commit | 41f4ee721b138304294b185185dc6fc51549c5b9 (patch) | |
| tree | 8347a6c243108e22df56cef2e9cfe11643724eab /build.zig | |
| parent | bd9ed88e5c7e112f2f4be8234fd11dd9db82d111 (diff) | |
Switch from clap to yazap
This is compatible with the latest 0.16.0 nightly build.
It is also a bit less magic than clap.
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -83,8 +83,8 @@ pub fn build(b: *std.Build) void { }), }); - const clap = b.dependency("clap", .{}); - exe.root_module.addImport("clap", clap.module("clap")); + const yazap = b.dependency("yazap", .{}); + exe.root_module.addImport("yazap", yazap.module("yazap")); // This declares intent for the executable to be installed into the // install prefix when running `zig build` (i.e. when executing the default |
