diff options
author | David Robillard <d@drobilla.net> | 2022-05-29 14:56:15 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-05-29 14:56:15 -0400 |
commit | d0dbe0b732ba751e6846e2b1676df2f3b55161fd (patch) | |
tree | a5c69c76d97a9d6bfe874c74395ee0b052935498 /wscript | |
parent | 5fac651aebabc9406cd78fe280311f6184a7fa85 (diff) | |
download | suil-d0dbe0b732ba751e6846e2b1676df2f3b55161fd.tar.gz suil-d0dbe0b732ba751e6846e2b1676df2f3b55161fd.tar.bz2 suil-d0dbe0b732ba751e6846e2b1676df2f3b55161fd.zip |
Fix warnings on MacOS
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -72,8 +72,11 @@ def configure(conf): ], 'clang': [ '-Wno-cast-qual', + '-Wno-deprecated-declarations', # Mac '-Wno-disabled-macro-expansion', '-Wno-padded', + '-Wno-reserved-id-macro', # Mac + '-Wno-switch-enum', # Mac ] }) |