diff options
author | David Robillard <d@drobilla.net> | 2020-11-10 13:19:45 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-10 13:19:45 +0100 |
commit | a9efbbbbbd80322c134a62d9d986fc861346c5de (patch) | |
tree | 0491bb5e942f4ec5f615ab531fe056f56f0110ec | |
parent | 2378c1cfbccc2012387d3361d3a8120b38582df0 (diff) | |
download | serd-a9efbbbbbd80322c134a62d9d986fc861346c5de.tar.gz serd-a9efbbbbbd80322c134a62d9d986fc861346c5de.tar.bz2 serd-a9efbbbbbd80322c134a62d9d986fc861346c5de.zip |
Fix warnings in MinGW build
-rw-r--r-- | wscript | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -99,6 +99,9 @@ def configure(conf): ], }) + if 'mingw' in conf.env.CC[0]: + conf.env.append_value('CFLAGS', '-Wno-unused-macros') + conf.env.update({ 'BUILD_UTILS': not Options.options.no_utils, 'BUILD_SHARED': not Options.options.no_shared, |