copy over current Waves version of their backend, along with minor changes in libs/ardour and libs/backend/jack to fit with API changes

This commit is contained in:
Paul Davis 2014-09-30 20:35:31 -04:00
parent 38e975d6b1
commit 8d59afb048
25 changed files with 844 additions and 430 deletions

6
libs/backends/wavesaudio/wscript Executable file → Normal file
View file

@ -29,8 +29,8 @@ def build(bld):
if bld.env['build_target'] == 'mingw':
obj = bld(features = 'cxx cxxshlib')
else:
obj = bld(features = 'c cxx cxxshlib')
obj = bld(features = 'c cxx cxxshlib')
if sys.platform == 'darwin':
if bld.env['build_target'] not in [ 'lion' ]:
obj.framework = 'CoreMidi'
@ -89,7 +89,7 @@ def build(bld):
]
obj.cxxflags = [ '-fPIC' ]
obj.cflags = [ '-fPIC', '-fms-extensions' ]
obj.cflags = [ '-fPIC', '-fms-extensions' ]
obj.name = 'waves_audiobackend'
obj.target = 'waves_audiobackend'
obj.use = 'libardour libpbd'