diff options
| author | Physick <96335032+DegustatorPonos@users.noreply.github.com> | 2026-07-07 15:24:11 +0500 |
|---|---|---|
| committer | Physick <96335032+DegustatorPonos@users.noreply.github.com> | 2026-07-07 15:24:11 +0500 |
| commit | ed2a75816a34aee3026cb07c85fb3be11decbf4d (patch) | |
| tree | 47bf13dc6eab7576794de67bad92547bcdb66e3a /build.zig | |
| parent | 5d010fb632964dcf1191f548a07eb1a0dcb83c41 (diff) | |
simple scene logic + raygui import
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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", |
