diff options
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -22,7 +22,11 @@ def configure(conf): conf.load('compiler_cxx') conf.line_just = 37 autowaf.configure(conf) + conf.env.append_unique('CXXFLAGS', ['-std=c++11']) + autowaf.display_header('Machina Configuration') + autowaf.check_pkg(conf, 'lv2', uselib_store='LV2', + atleast_version='1.2.0', mandatory=True) autowaf.check_pkg(conf, 'glibmm-2.4', uselib_store='GLIBMM', atleast_version='2.14.0', mandatory=True) autowaf.check_pkg(conf, 'gthread-2.0', uselib_store='GTHREAD', @@ -35,6 +39,8 @@ def configure(conf): atleast_version='0.5.1', mandatory=True) autowaf.check_pkg(conf, 'ganv-1', uselib_store='GANV', atleast_version='1.0.0', mandatory=False) + autowaf.check_pkg(conf, 'serd-0', uselib_store='SERD', + atleast_version='0.2.0', mandatory=False) autowaf.check_pkg(conf, 'sord-0', uselib_store='SORD', atleast_version='0.2.0', mandatory=False) #autowaf.check_pkg(conf, 'eugene', uselib_store='EUGENE', |