quakec/tools/qc-compiler-win.bat
Steam Deck User 89742dc652 GLOBAL: Retire CTR QuakeC, Merge with PSP.
This rebrands the two under the "HANDHELD" name. The two platforms now
function identically in regards to server functions, making them
unified in behavior and general server-reliant functions.
2022-12-28 15:21:19 -05:00

39 lines
910 B
Batchfile

@ECHO OFF
CD ../
REM ****** create build directories ******
MKDIR build\pc\ 2>nul
MKDIR build\handheld\ 2>nul
MKDIR build\nx\ 2>nul
MKDIR build\vita\ 2>nul
CD bin/
echo.
echo ========================
echo compiling FTE CCQC
echo ========================
echo.
fteqcc-cli-win.exe -srcfile ../progs/fte-client.src
echo.
echo ========================
echo compiling FTE SSQC
echo ========================
echo.
fteqcc-cli-win.exe -srcfile ../progs/fte-server.src
echo.
echo ========================
echo compiling PSP & 3DS QC
echo ========================
echo.
fteqcc-cli-win.exe -srcfile ../progs/handheld.src
echo.
echo ========================
echo compiling NX-QS QC
echo ========================
echo.
fteqcc-cli-win.exe -srcfile ../progs/nx.src
echo.
echo ========================
echo compiling VITA QC
echo ========================
echo.
fteqcc-cli-win.exe -srcfile ../progs/vita.src
pause