switch off enum warning for now (#898)
This commit is contained in:
parent
62bfccd67b
commit
2f1aa5ff58
1 changed files with 2 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue