implemented gui mode view

This commit is contained in:
2025-07-22 23:03:24 +02:00
parent 987ee5c2d3
commit a23921bc98
4 changed files with 15 additions and 1 deletions

View File

@@ -71,10 +71,12 @@ pub fn build(b: *std.Build) void {
});
const raylib = raylib_dep.module("raylib"); // main raylib module
const raygui = raylib_dep.module("raygui"); // raygui module
const raylib_artifact = raylib_dep.artifact("raylib"); // raylib c library
exe.linkLibrary(raylib_artifact);
exe.root_module.addImport("raylib", raylib);
exe.root_module.addImport("raygui", raygui);
// This declares intent for the executable to be installed into the
// standard location when the user invokes the "install" step (the default