converted build system to simpler C

This commit is contained in:
2026-07-23 17:18:20 -04:00
parent 36c9ef132d
commit f471c447d8
3 changed files with 918 additions and 1061 deletions
+3 -3
View File
@@ -12,7 +12,7 @@ cd /d "%SCRIPT_DIR%.."
set FBUILD=misc\fbuild.exe
set BUILD_TOOL=misc\build_system.exe
set BUILD_SRC=tools\build.cpp
set BUILD_SRC=tools\build_system.c
set TARGET_JULIET=0
set TARGET_ROMEO=0
@@ -89,8 +89,8 @@ if !NEED_RECOMPILE_BUILD_TOOL! equ 1 (
exit /b 1
)
)
echo [BUILD] Compiling fast native build orchestrator [tools\build.cpp -^> misc\build.exe]...
%COMPILER% /nologo /std:c++20 /MT /O2 /EHa- /W4 "%BUILD_SRC%" /Fe"%BUILD_TOOL%"
echo [BUILD] Compiling fast native build orchestrator [tools\build_system.c -^> misc\build.exe]...
%COMPILER% /nologo /MT /O2 /W4 "%BUILD_SRC%" /Fe"%BUILD_TOOL%"
if !ERRORLEVEL! neq 0 (
echo [BUILD FAILED] Could not compile build orchestrator.
exit /b 1