the sound of progress

- Medic TF2
This commit is contained in:
2025-07-12 18:42:38 +02:00
parent af1244b829
commit 863e04f19e
9 changed files with 231 additions and 144 deletions

View File

@@ -28,6 +28,7 @@ fn addEngineSources(b: *std.Build, opts: LibBuildOpts) *std.Build.Module {
"src/components/eeprom.c",
"src/components/filesystem.c",
"src/components/drive.c",
"src/components/volatileDrive.c",
"src/components/screen.c",
"src/components/gpu.c",
"src/components/keyboard.c",
@@ -68,7 +69,7 @@ fn compileTheRightLua(b: *std.Build, target: std.Build.ResolvedTarget, version:
const c = b.addObject(.{
.name = "lua",
.link_libc = true,
.optimize = .ReleaseSafe,
.optimize = .ReleaseFast,
.target = target,
});