summaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorPhysick <96335032+DegustatorPonos@users.noreply.github.com>2026-07-07 15:24:11 +0500
committerPhysick <96335032+DegustatorPonos@users.noreply.github.com>2026-07-07 15:24:11 +0500
commited2a75816a34aee3026cb07c85fb3be11decbf4d (patch)
tree47bf13dc6eab7576794de67bad92547bcdb66e3a /build.zig
parent5d010fb632964dcf1191f548a07eb1a0dcb83c41 (diff)
simple scene logic + raygui import
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig3
1 files changed, 3 insertions, 0 deletions
diff --git a/build.zig b/build.zig
index 846f02f..49c314b 100644
--- a/build.zig
+++ b/build.zig
@@ -13,10 +13,13 @@ pub fn build(b: *std.Build) void {
root.addCSourceFiles(.{
.files = &[_][]const u8 {
"src/main.c",
+ "src/scenes/sceneManager.c",
+ "src/scenes/mainMenu.c",
}
});
root.linkSystemLibrary("raylib", .{.needed = true});
+ root.addIncludePath(b.path("include/"));
const exe = b.addExecutable(.{
.name = "game",