summaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
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`).