Fix problem with 'strict' option...
...so that compiler options aren't incorrectly combined in a quoted string.
This commit is contained in:
parent
fe89b81db3
commit
b37dbb0a98
1 changed files with 1 additions and 1 deletions
|
@ -364,7 +364,7 @@ if env['profile']:
|
|||
env["LINKFLAGS"].append("-pg")
|
||||
|
||||
if env['strict']:
|
||||
env["CXXFLAGS"].append("-Werror -Wno-unused -Wno-sign-compare")
|
||||
env["CXXFLAGS"] += Split("-Werror -Wno-unused -Wno-sign-compare")
|
||||
|
||||
if env['tinygui']:
|
||||
env["CXXFLAGS"].append("-DUSE_TINY_GUI")
|
||||
|
|
Loading…
Add table
Reference in a new issue