switch off enum warning for now (#898)

This commit is contained in:
Fischlurch 2012-10-15 04:29:19 +02:00
parent 62bfccd67b
commit 2f1aa5ff58

View file

@ -73,7 +73,8 @@ def defineBuildEnvironment():
env.Replace( CPPPATH =["#src"] # used to find includes, "#" means always absolute to build-root
, CPPDEFINES=['LUMIERA_VERSION='+VERSION ] # note: it's a list to append further defines
, CCFLAGS='-Wall -Wextra '
, CCFLAGS='-Wall -Wextra'
, CXXFLAGS='-Wno-enum-compare'
, CFLAGS='-std=gnu99'
)
handleVerboseMessages(env)