[IR] adding external resources managements
Mirror Gitea refs to GitHub / mirror (push) Successful in 13s
Test / build_and_test (push) Successful in 3m47s
Build / build (push) Failing after 1m14s

[Soft] adding descriptor sets management
This commit is contained in:
2026-08-12 19:26:02 +02:00
parent e3e5fa4b18
commit a0d6fa487e
26 changed files with 2664 additions and 470 deletions
+4 -2
View File
@@ -218,8 +218,10 @@ pub fn build(b: *std.Build) !void {
test_step.dependOn(&run_tests.step);
inline for (std.enums.values(RunningMode)) |mode| {
(try addCTS(b, target, &impl, lib, mode)).dependOn(&lib_install.step);
(try addMultithreadedCTS(b, target, &impl, lib, mode)).dependOn(&lib_install.step);
if (addCTS(b, target, &impl, lib, mode) catch null) |step|
step.dependOn(&lib_install.step);
if (addMultithreadedCTS(b, target, &impl, lib, mode) catch null) |step|
step.dependOn(&lib_install.step);
}
const impl_autodoc_test = b.addObject(.{