removed pedantic-errors on macosx

This commit is contained in:
Magnus Auvinen 2007-10-07 20:27:28 +00:00
parent 1c45aa51f8
commit ff19d4e077

View file

@ -188,7 +188,11 @@ function build(settings)
if family == "windows" then
engine_settings.cc.flags = "/wd4244"
else
engine_settings.cc.flags = "-Wall -pedantic-errors"
if platform == "macosx" then
engine_settings.cc.flags = "-Wall"
else
engine_settings.cc.flags = "-Wall -pedantic-errors"
end
engine_settings.linker.flags = ""
end