Additional waf tweaks for MSYS

This commit is contained in:
Franke Burgarino 2025-11-20 13:54:25 -06:00
parent 94fc3aae47
commit d30a0b2bfb
2 changed files with 3 additions and 1 deletions

View file

@ -440,7 +440,7 @@ def build(bld):
if bld.is_defined('HAVE_LILV') :
obj.source += ['lv2_plugin.cc', 'lv2_evbuf.cc', 'uri_map.cc']
obj.uselib += ['LILV']
obj.uselib += ['LILV', 'SERD', 'SORD', 'SRATOM']
if bld.is_defined('HAVE_SUIL'):
obj.use += [ 'libsuil' ]

View file

@ -25,6 +25,8 @@ def build_portaudio (bld, name, defines):
obj.target = name
obj.use = 'libardour libpbd'
obj.uselib = 'PORTAUDIO GLIBMM XML'
obj.stlib = ['portaudio']
obj.lib = ['ole32', 'setupapi', 'uuid', 'winmm', 'ksuser', 'jack64']
obj.install_path = os.path.join(bld.env['LIBDIR'], 'backends')
obj.defines = ['PACKAGE="' + I18N_PACKAGE + '"',
'ARDOURBACKEND_DLL_EXPORTS',