fix(CMake/Bash): -DSCRIPTS cmake param (#6522)

This commit is contained in:
Francesco Borzì
2021-06-23 17:25:28 +02:00
committed by GitHub
parent 569e3399c6
commit 1e4a73972e
3 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ MTHREADS=$(($(grep -c ^processor /proc/cpuinfo) + 2))
CWARNINGS=ON
CDEBUG=OFF
CTYPE=Release
CSCRIPTS=ON
CSCRIPTS=static
CBUILD_TESTING=ON
CSERVERS=ON
CTOOLS=ON

2
conf/dist/config.sh vendored
View File

@@ -60,7 +60,7 @@ CDEBUG=OFF
# * MinSizeRel: same as Release but optimizing for size rather than speed.
CTYPE=${CTYPE:-Release}
# compile scripts
CSCRIPTS=${CSCRIPTS:-ON}
CSCRIPTS=${CSCRIPTS:-static}
# compile unit tests
CBUILD_TESTING=OFF
# compile server

2
conf/dist/env.ac vendored
View File

@@ -10,7 +10,7 @@ DATAPATH=/azerothcore/env/dist/data
#
CTYPE=RelWithDebInfo
CSCRIPTS=ON
CSCRIPTS=static
AC_CCACHE=true
#