We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60214d6 commit d285fc8Copy full SHA for d285fc8
build.zig
@@ -102,7 +102,6 @@ pub fn build(b: *std.Build) !void {
102
103
// Benchmarks
104
const benchmarks_step = b.step("benchmarks", "Build and run all benchmarks");
105
- benchmarks_step.dependOn(&sdk_lib.step);
106
107
const benchmark_mod = benchmarks_dep.module("zbench");
108
@@ -129,6 +128,7 @@ pub fn build(b: *std.Build) !void {
129
128
});
130
131
const docs_step = b.step("docs", "Copy documentation artifacts to prefix path");
+ docs_step.dependOn(&sdk_lib.step);
132
docs_step.dependOn(&install_docs.step);
133
}
134
build.zig.zon
@@ -37,6 +37,7 @@
37
"build.zig.zon",
38
"src",
39
"examples",
40
+ "benchmarks",
41
"LICENSE",
42
"README.md",
43
},
0 commit comments