diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-07-23 21:13:58 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-07-24 02:37:25 -0700 |
| commit | e8fa19960243a99cef5d9af94c3db52173787a4e (patch) | |
| tree | ce9216bc3b770fd91c33579fe1a6f45ab8243141 /build.zig | |
| parent | 575a7cccc0d9da542bd611f73e570d840f261bf5 (diff) | |
| download | zig-e8fa19960243a99cef5d9af94c3db52173787a4e.tar.gz zig-e8fa19960243a99cef5d9af94c3db52173787a4e.zip | |
std.Build.Step.Compile: getEmittedDocs API enhancements
* Allow calling it multiple times.
* Rename it. Sorry, this is to coincide with #16353.
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -61,7 +61,7 @@ pub fn build(b: *std.Build) !void { autodoc_test.overrideZigLibDir("lib"); autodoc_test.emit_bin = .no_emit; // https://github.com/ziglang/zig/issues/16351 const install_std_docs = b.addInstallDirectory(.{ - .source_dir = autodoc_test.getOutputDocs(), + .source_dir = autodoc_test.getEmittedDocs(), .install_dir = .prefix, .install_subdir = "doc/std", }); |
