adding image to image copy
All checks were successful
Build / build (push) Successful in 2m15s
Test / build_and_test (push) Successful in 54m45s

This commit is contained in:
2026-04-13 16:36:10 +02:00
parent d54c28dcaa
commit 95e8edabe0
4 changed files with 166 additions and 18 deletions

View File

@@ -119,6 +119,20 @@ pub fn build(b: *std.Build) !void {
(try addCTS(b, target, &impl, lib, .valgrind)).dependOn(&lib_install.step);
(try addMultithreadedCTS(b, target, &impl, lib)).dependOn(&lib_install.step);
const impl_autodoc_test = b.addObject(.{
.name = "lib",
.root_module = lib_mod,
});
const impl_install_docs = b.addInstallDirectory(.{
.source_dir = impl_autodoc_test.getEmittedDocs(),
.install_dir = .prefix,
.install_subdir = b.fmt("docs-{s}", .{impl.name}),
});
const impl_docs_step = b.step(b.fmt("docs-{s}", .{impl.name}), b.fmt("Build and install the documentation for lib_vulkan_{s}", .{impl.name}));
impl_docs_step.dependOn(&impl_install_docs.step);
}
const autodoc_test = b.addObject(.{