diff options
| -rw-r--r-- | default.bam | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/default.bam b/default.bam index decd4540..0d7a43f5 100644 --- a/default.bam +++ b/default.bam @@ -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 |