diff options
author | David Robillard <d@drobilla.net> | 2019-06-25 21:34:26 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-06-27 19:40:34 +0200 |
commit | 6e0b096f960cf876c5e375f916b8dbea9430d367 (patch) | |
tree | ae26309be48e7ae15ce2e664da036069c09b55b7 | |
parent | 4aaad461550dac61795f7950f78062f320cd88ba (diff) | |
download | pugl-6e0b096f960cf876c5e375f916b8dbea9430d367.tar.gz pugl-6e0b096f960cf876c5e375f916b8dbea9430d367.tar.bz2 pugl-6e0b096f960cf876c5e375f916b8dbea9430d367.zip |
Disable deprecation warnings on MacOS
-rw-r--r-- | wscript | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -41,6 +41,8 @@ def configure(conf): if conf.env.TARGET_PLATFORM == 'win32': conf.load('compiler_cxx', cache=True) + elif conf.env.TARGET_PLATFORM == 'darwin': + conf.env.append_unique('CFLAGS', ['-Wno-deprecated-declarations']) autowaf.set_c_lang(conf, 'c99') |