diff options
author | David Robillard <d@drobilla.net> | 2017-02-12 15:20:56 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-02-12 15:20:56 +0100 |
commit | 3088a5f39323c0ff75536e27e5e896a4f27b3c91 (patch) | |
tree | c8ea1685915fff243c3f03a9839cd1e74cce5698 /wscript | |
parent | c32f3ca76a09c03fe9a022eb46e049e6fd5e2dbb (diff) | |
download | jalv-3088a5f39323c0ff75536e27e5e896a4f27b3c91.tar.gz jalv-3088a5f39323c0ff75536e27e5e896a4f27b3c91.tar.bz2 jalv-3088a5f39323c0ff75536e27e5e896a4f27b3c91.zip |
Fix compilation with recent Gtkmm versions that require C++11
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -50,6 +50,9 @@ def configure(conf): autowaf.set_c99_mode(conf) autowaf.display_header('Jalv Configuration') + if conf.check_cxx(cxxflags=["-std=c++0x"]): + conf.env.append_unique('CXXFLAGS', ['-std=c++0x']) # for Gtkmm + autowaf.check_pkg(conf, 'lv2', atleast_version='1.14.0', uselib_store='LV2') autowaf.check_pkg(conf, 'lilv-0', uselib_store='LILV', atleast_version='0.24.0', mandatory=True) |