From 06abf499a89ecce3190eb87203b5afadc61ff25b Mon Sep 17 00:00:00 2001 From: FObersteiner Date: Mon, 24 Jun 2024 18:33:38 +0200 Subject: [PATCH] disable autodoc feature --- build.zig | 18 +++++++++--------- docs/change.log | 1 + 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/build.zig b/build.zig index 6ed1334..de47cb8 100644 --- a/build.zig +++ b/build.zig @@ -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); + // } } diff --git a/docs/change.log b/docs/change.log index 11ef6c2..ee079bb 100644 --- a/docs/change.log +++ b/docs/change.log @@ -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