#!/bin/bash COMPILER_C="/usr/bin/gcc" COMPILER_CC="/usr/bin/gcc" COMPILER_CXX="/usr/bin/g++" # how many thread must be used for compilation ( leave zero to use all available ) MTHREADS=0 # enable/disable warnings during compilation CWARNINGS=1 # enable/disable some debug informations ( it's not a debug compilation ) CDEBUG=0 # specify compilation type CCTYPE=Release # compile scripts CSCRIPTS=1 # compile server CSERVERS=1 # compile tools CTOOLS=0 # use precompiled headers ( fatest compilation but not optimized if you change headers often ) CSCRIPTPCH=1 CCOREPCH=1 # AZTH # compile azth plugins for custom features CAZTH_PLG=1 # compile azth plugins for trinitycore features CAZTH_TC_PLG=1 # enable unit test on TC load CAZTH_UNIT_TEST=1 # absolute root path of your azerothshard repository SRCPATH= # absolute path where binary files must be stored BINPATH= # absolute path where config. files must be stored CONFDIR=