From 0d31040fbd4eed000002fb449b18b439b69497b5 Mon Sep 17 00:00:00 2001 From: Yehonal Date: Mon, 15 Aug 2016 23:59:30 +0200 Subject: [PATCH] [CMAKE] More compatible definitions --- conf/config.sh.dist | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/conf/config.sh.dist b/conf/config.sh.dist index 3a0f46a80..b80aea8d3 100644 --- a/conf/config.sh.dist +++ b/conf/config.sh.dist @@ -28,20 +28,20 @@ CCOMPILERCXX="/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 +CWARNINGS=OFF # enable/disable some debug informations ( it's not a debug compilation ) -CDEBUG=0 +CDEBUG=OFF # specify compilation type CTYPE=Release # compile scripts -CSCRIPTS=1 +CSCRIPTS=ON # compile server -CSERVERS=1 +CSERVERS=ON # compile tools -CTOOLS=0 +CTOOLS=OFF # use precompiled headers ( fatest compilation but not optimized if you change headers often ) -CSCRIPTPCH=1 -CCOREPCH=1 +CSCRIPTPCH=ON +CCOREPCH=ON # you can add your custom definitions here ( -D ) CCUSTOMOPTIONS=""