diff options
author | David Robillard <d@drobilla.net> | 2014-11-25 12:24:09 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-11-25 12:24:09 -0500 |
commit | fe4d7f69e7b562a68c4257051a17ab571f85c6ed (patch) | |
tree | ff55c5c2d8db9acbc9fb5dccabf216b0642c5d9f /plugins/eg-sampler.lv2/wscript | |
parent | 68a4dc89f5e00aa6e2780f4f96011b92961b7a80 (diff) | |
download | lv2-fe4d7f69e7b562a68c4257051a17ab571f85c6ed.tar.xz |
Link math library where required.
Diffstat (limited to 'plugins/eg-sampler.lv2/wscript')
-rw-r--r-- | plugins/eg-sampler.lv2/wscript | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/eg-sampler.lv2/wscript b/plugins/eg-sampler.lv2/wscript index 732c904..9815920 100644 --- a/plugins/eg-sampler.lv2/wscript +++ b/plugins/eg-sampler.lv2/wscript @@ -27,6 +27,7 @@ def configure(conf): atleast_version='1.0.0', mandatory=True) autowaf.check_pkg(conf, 'gtk+-2.0', uselib_store='GTK2', atleast_version='2.18.0', mandatory=False) + conf.check(features='c cshlib', lib='m', uselib_store='M', mandatory=False) autowaf.display_msg(conf, 'LV2 bundle directory', conf.env.LV2DIR) print('') @@ -64,7 +65,7 @@ def build(bld): name = 'sampler', target = '%s/sampler' % bundle, install_path = '${LV2DIR}/%s' % bundle, - use = 'SNDFILE LV2', + use = ['M', 'SNDFILE', 'LV2'], includes = includes) obj.env.cshlib_PATTERN = module_pat @@ -75,6 +76,6 @@ def build(bld): name = 'sampler_ui', target = '%s/sampler_ui' % bundle, install_path = '${LV2DIR}/%s' % bundle, - use = 'GTK2 LV2', + use = ['GTK2', 'LV2'], includes = includes) obj.env.cshlib_PATTERN = module_pat |