Removed fastbuild completely and converted the last two remaining scripts

This commit is contained in:
2026-07-27 15:47:47 -04:00
parent c3c245335d
commit 218a1d00ac
14 changed files with 10 additions and 16 deletions
+6 -6
View File
@@ -2,16 +2,16 @@
setlocal
REM ============================================================
REM ship.bat - Build clang-Release and prepare Ship/ folder
REM ship.bat - Build Release and prepare Ship/ folder
REM ============================================================
set ROOT=%~dp0..
set BUILD_DIR=%ROOT%\bin\x64Clang-Release
set BUILD_DIR=%ROOT%\bin\x64-Release
set SHIP_DIR=%ROOT%\Ship
REM Step 0: Build Shader Compiler
echo [Ship] Building Shader Compiler...
call "%~dp0fbuild" JulietShaderCompiler-x64Clang-Release -cache
call "%~dp0build.bat" release shadercompiler
if errorlevel 1 (
echo [Ship] SHADER COMPILER BUILD FAILED
exit /b 1
@@ -25,9 +25,9 @@ if errorlevel 1 (
exit /b 1
)
REM Step 2: Build clang-Release
echo [Ship] Building clang-Release...
call "%~dp0fbuild" clang-Release -cache
REM Step 2: Build Release
echo [Ship] Building Release...
call "%~dp0build.bat" release juliet game
if errorlevel 1 (
echo [Ship] BUILD FAILED
exit /b 1