change games into an arcade

This commit is contained in:
Squibid 2025-12-23 15:56:50 -05:00
parent f219f0c5ce
commit 70846f6283
Signed by: squibid
GPG key ID: BECE5684D3C4005D
7 changed files with 157 additions and 125 deletions

View file

@ -21,7 +21,7 @@ pub fn build(b: *std.Build) void {
.name = "games",
.linkage = .static,
.root_module = b.createModule(.{
.root_source_file = b.path("src/subcmds/games.zig"),
.root_source_file = b.path("src/subcmds/arcade/arcade.zig"),
.target = target,
.optimize = optimize,
.link_libc = true,
@ -48,7 +48,7 @@ pub fn build(b: *std.Build) void {
"-DVERSION=\"hi\"",
"-std=c23",
"-D_GNU_SOURCE",
"-MJ compile_commands.json",
"-MJcompile_commands.json",
}
});