mirror of
https://github.com/nzp-team/quakec.git
synced 2024-11-22 11:51:11 +00:00
22 lines
No EOL
719 B
Bash
Executable file
22 lines
No EOL
719 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
cd ../
|
|
|
|
# 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
|
|
|
|
# create build directories
|
|
mkdir -p build/{fte,standard}
|
|
|
|
cd bin/
|
|
|
|
# build..
|
|
echo "Compiling FTE CSQC.."
|
|
./fteqcc-cli-mac -srcfile ../progs/fte-client.src | grep -E -i "warning |error |defined |not |unknown |branches"
|
|
echo "Compiling FTE SSQC.."
|
|
./fteqcc-cli-mac -O2 -srcfile ../progs/fte-server.src | grep -E -i "warning |error |defined |not |unknown |branches"
|
|
echo "Compiling Standard/Id SSQC.."
|
|
./fteqcc-cli-mac -O2 -srcfile ../progs/standard.src | grep -E -i "warning |error |defined |not |unknown |branches"
|
|
|
|
echo "End of script." |