quakec/tools/qc-compiler-lin.sh

22 lines
719 B
Bash
Raw Normal View History

2022-02-08 18:42:28 +00:00
#!/usr/bin/env bash
cd ../
# generate hash table
echo "Generating Hash Table.."
2024-01-07 23:14:35 +00:00
python3 bin/qc_hash_generator.py -i tools/asset_conversion_table.csv -o source/server/hash_table.qc
2022-02-08 18:42:28 +00:00
# create build directories
mkdir -p build/{fte,standard}
2022-02-08 18:42:28 +00:00
cd bin/
# build..
echo "Compiling FTE CSQC.."
2024-01-09 22:45:23 +00:00
./fteqcc-cli-lin -srcfile ../progs/fte-client.src | grep -E -i "warning |error |defined |not |unknown |branches"
echo "Compiling FTE SSQC.."
2024-01-09 22:45:23 +00:00
./fteqcc-cli-lin -O2 -srcfile ../progs/fte-server.src | grep -E -i "warning |error |defined |not |unknown |branches"
echo "Compiling Standard/Id SSQC.."
2024-01-09 22:45:23 +00:00
./fteqcc-cli-lin -O2 -srcfile ../progs/standard.src | grep -E -i "warning |error |defined |not |unknown |branches"
echo "End of script."