SCons: add missing -Wextra compiler flag
This commit is contained in:
parent
4fb8f5b69d
commit
edea4229aa
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ def setupBasicEnvironment():
|
||||||
, ICONDIR=ICONDIR
|
, ICONDIR=ICONDIR
|
||||||
, CPPPATH=["#"+SRCDIR] # used to find includes, "#" means always absolute to build-root
|
, CPPPATH=["#"+SRCDIR] # used to find includes, "#" means always absolute to build-root
|
||||||
, CPPDEFINES=['-DLUMIERA_VERSION='+VERSION ] # note: it's a list to append further defines
|
, CPPDEFINES=['-DLUMIERA_VERSION='+VERSION ] # note: it's a list to append further defines
|
||||||
, CCFLAGS='-Wall ' # -fdiagnostics-show-option
|
, CCFLAGS='-Wall -Wextra '
|
||||||
, CFLAGS='-std=gnu99'
|
, CFLAGS='-std=gnu99'
|
||||||
)
|
)
|
||||||
RegisterIcon_Builder(env,SVGRENDERER)
|
RegisterIcon_Builder(env,SVGRENDERER)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue