From 2f1aa5ff588a96377070a50846d76ee20c4fdec8 Mon Sep 17 00:00:00 2001 From: Ichthyostega Date: Mon, 15 Oct 2012 04:29:19 +0200 Subject: [PATCH] switch off enum warning for now (#898) --- admin/scons/Setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/admin/scons/Setup.py b/admin/scons/Setup.py index 5a064381d..8d5d762a5 100644 --- a/admin/scons/Setup.py +++ b/admin/scons/Setup.py @@ -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)