mirror of
https://github.com/nzp-team/quakec.git
synced 2024-11-10 06:31:44 +00:00
244f21bf79
* REPO: Update progs.src standards, consolidate both ssqc to one src file * FTEQCC: Optimize SSQC with -O3 * PROGS: Globally disable useless fastarrays on standard * TOOLS: Consolidate Linux and macOS build scripts into one * Remove some debug stuff * ACTIONS: Change build script reference name
24 lines
No EOL
581 B
Batchfile
24 lines
No EOL
581 B
Batchfile
@ECHO OFF
|
|
|
|
CD ../
|
|
|
|
REM ****** generate hash table ******
|
|
echo Generating Hash Table..
|
|
python3 bin\qc_hash_generator.py -i tools\asset_conversion_table.csv -o source\server\hash_table.qc
|
|
|
|
REM ****** create build directories ******
|
|
MKDIR build\fte\ 2>nul
|
|
MKDIR build\standard\ 2>nul
|
|
|
|
CD bin/
|
|
|
|
REM ****** build.. ******
|
|
echo Compiling FTE CSQC..
|
|
fteqcc-cli-win.exe -srcfile ../progs/csqc.src
|
|
echo Compiling FTE SSQC..
|
|
fteqcc-cli-win.exe -O3 -DFTE -srcfile ../progs/ssqc.src
|
|
echo Compiling Standard/Id SSQC..
|
|
fteqcc-cli-win.exe -O3 -srcfile ../progs/ssqc.src
|
|
|
|
echo End of script.
|
|
pause |