mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 16:46:35 +01:00
more previously applied changes required to build Waves audio/midi backend
This commit is contained in:
parent
c90fef1b4c
commit
ca08e4c7c7
1 changed files with 5 additions and 2 deletions
|
|
@ -27,9 +27,12 @@ def configure(conf):
|
|||
def build(bld):
|
||||
|
||||
if bld.env['build_target'] == 'mingw':
|
||||
obj = bld(features = 'c cxx cxxshlib')
|
||||
obj = bld(features = 'cxx cxxshlib')
|
||||
else:
|
||||
obj = bld(features = 'cxx cxxshlib', framework = ["CoreMidi"])
|
||||
obj = bld(features = 'c cxx cxxshlib')
|
||||
|
||||
if bld.env['build_target'] == 'mountain_lion':
|
||||
obj.framework = 'CoreMidi'
|
||||
|
||||
obj.source = [
|
||||
'waves_audiobackend.cc',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue