Skip to content

Commit

Permalink
disable autodoc feature
Browse files Browse the repository at this point in the history
  • Loading branch information
FObersteiner committed Jun 24, 2024
1 parent 202ff99 commit 06abf49
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
18 changes: 9 additions & 9 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ pub fn build(b: *std.Build) void {
const test_step = b.step("test", "Run unit tests");
test_step.dependOn(&run_unit_tests.step);

const docs_step = b.step("docs", "auto-generate documentation");
{
const install_docs = b.addInstallDirectory(.{
.source_dir = exe.getEmittedDocs(),
.install_dir = std.Build.InstallDir{ .custom = "../autodoc" },
.install_subdir = "",
});
docs_step.dependOn(&install_docs.step);
}
// const docs_step = b.step("docs", "auto-generate documentation");
// {
// const install_docs = b.addInstallDirectory(.{
// .source_dir = exe.getEmittedDocs(),
// .install_dir = std.Build.InstallDir{ .custom = "../autodoc" },
// .install_subdir = "",
// });
// docs_step.dependOn(&install_docs.step);
// }
}
1 change: 1 addition & 0 deletions docs/change.log
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 2024-06-24, v0.0.13

- use parseIp instead of resolveIp, avoids "std.net.if_nametoindex unimplemented for this OS" error on specific OS (thanks @part1zano on codeberg)
- disable autodoc feature in build.zig since unused

## 2024-06-20, v0.0.12

Expand Down

0 comments on commit 06abf49

Please sign in to comment.