mirror of
https://github.com/dhewm/dhewm3.git
synced 2025-03-21 02:01:03 +00:00
Disable some not yet fixed warnings
These spam the console, disable them for now. Some of these warnings need to be looked at instead of just adding code to prevent them.
This commit is contained in:
parent
be40e9d661
commit
618f15cffe
1 changed files with 5 additions and 0 deletions
|
@ -326,6 +326,11 @@ if ( ID_NOLANADDRESS != '0' ):
|
|||
if ( ID_MCHECK == '1' ):
|
||||
BASECPPFLAGS.append( '-DID_MCHECK' )
|
||||
|
||||
# TODO fix these warnings
|
||||
BASECPPFLAGS.append('-Wno-sign-compare')
|
||||
BASECPPFLAGS.append('-Wno-switch')
|
||||
BASECPPFLAGS.append('-Wno-format-security')
|
||||
|
||||
# create the build environements
|
||||
g_base_env = Environment( ENV = os.environ, CC = CC, CXX = CXX, LINK = LINK, CPPFLAGS = BASECPPFLAGS, LINKFLAGS = BASELINKFLAGS, CPPPATH = CORECPPPATH, LIBPATH = CORELIBPATH )
|
||||
scons_utils.SetupUtils( g_base_env )
|
||||
|
|
Loading…
Reference in a new issue