From 16a2a404189cc6b5cd3493df8d19298af7e542ce Mon Sep 17 00:00:00 2001 From: Lorenzo Torres Date: Sat, 29 Mar 2025 16:15:56 +0100 Subject: moved rendering to a system. To ensure that the rendering system is being run in the main thread, I added the concept of "Sync systems", so that when a system group is created it's possible to specify whether it's possible to run it on a separate thread or not. --- build.zig | 1 + 1 file changed, 1 insertion(+) (limited to 'build.zig') diff --git a/build.zig b/build.zig index 399286f..c398bd4 100644 --- a/build.zig +++ b/build.zig @@ -118,6 +118,7 @@ pub fn build(b: *std.Build) void { .root_module = mods, .name = "mods", }); + const mods_docs = b.addInstallDirectory(.{ .source_dir = mods_lib.getEmittedDocs(), .install_dir = .prefix, -- cgit v1.2.3