Update build.zig

This commit is contained in:
Jacob 2022-01-16 23:55:13 +00:00 committed by GitHub
parent 1836e941fd
commit b630099aca

View File

@ -24,9 +24,11 @@ pub fn build(b: *Builder) void {
exe.addPackagePath("ecs", "src/ecs.zig");
exe.linkSystemLibrary("c");
exe.emit_docs = .emit;
const doc = b.step("docs", "Generate documentation.");
doc.dependOn(&exe.step);
const docs = exe;
docs.emit_docs = .emit;
const doc = b.step("docs", "Generate documentation");
doc.dependOn(&docs.step);
const run_cmd = exe.run();