mirror of
https://github.com/nzp-team/quakec.git
synced 2024-11-14 16:30:47 +00:00
89742dc652
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.
39 lines
910 B
Batchfile
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
|