diff options
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`). |