quakec/tools/qc-compiler-win.bat

34 lines
785 B
Batchfile
Raw Normal View History

2022-02-08 18:42:28 +00:00
@ECHO OFF
CD ../
REM ****** create build directories ******
MKDIR build\pc\ 2>nul
MKDIR build\handheld\ 2>nul
2023-01-14 00:55:40 +00:00
MKDIR build\quakespasm\ 2>nul
2022-02-08 18:42:28 +00:00
MKDIR build\vita\ 2>nul
CD bin/
echo.
echo ========================
echo compiling FTE CCQC
echo ========================
2022-02-08 18:42:28 +00:00
echo.
fteqcc-cli-win.exe -srcfile ../progs/fte-client.src
echo.
echo ========================
echo compiling FTE SSQC
echo ========================
2022-02-08 18:42:28 +00:00
echo.
fteqcc-cli-win.exe -srcfile ../progs/fte-server.src
echo.
echo ========================
echo compiling PSP & 3DS QC
echo ========================
2022-02-08 18:42:28 +00:00
echo.
fteqcc-cli-win.exe -srcfile ../progs/handheld.src
2022-02-08 18:42:28 +00:00
echo.
echo ========================
2023-01-14 00:55:40 +00:00
echo compiling QUAKESPASM QC
echo ========================
2022-02-08 18:42:28 +00:00
echo.
2023-01-14 00:55:40 +00:00
fteqcc-cli-win.exe -srcfile ../progs/quakespasm.src
2022-02-08 18:42:28 +00:00
pause