move docgen.zig to tools/

This commit is contained in:
Andrew Kelley 2023-07-30 18:44:31 -07:00
parent 25a9487caa
commit acbb6418c3
2 changed files with 1 additions and 1 deletions

View file

@ -36,7 +36,7 @@ pub fn build(b: *std.Build) !void {
const docgen_exe = b.addExecutable(.{
.name = "docgen",
.root_source_file = .{ .path = "doc/docgen.zig" },
.root_source_file = .{ .path = "tools/docgen.zig" },
.target = .{},
.optimize = .Debug,
});