aboutsummaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2026-04-28 19:37:37 +0200
committerAnhgelus Morhtuuzh <william@herges.fr>2026-04-28 19:37:37 +0200
commitd9e37656e83d7d3c25709795ab7ccccca0071254 (patch)
tree622789be5f608f39d6fdd9b9b99a16209f3b1d7f /build.zig
parent3b1e6547d069d7c438af551a4989972802a895ee (diff)
perf(eval): reduce memory usage
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 b68379e..d41b8d1 100644
--- a/build.zig
+++ b/build.zig
@@ -48,4 +48,7 @@ pub fn build(b: *std.Build) void {
examples_step.dependOn(&installed_lib.step);
const example_run = b.addRunArtifact(example);
examples_step.dependOn(&example_run.step);
+
+ const check = b.step("check", "Check if foo compiles");
+ check.dependOn(&lib.step);
}