more previously applied changes required to build Waves audio/midi backend
authorPaul Davis <paul@linuxaudiosystems.com>
Wed, 30 Apr 2014 18:24:32 +0000 (14:24 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Wed, 30 Apr 2014 18:24:32 +0000 (14:24 -0400)
libs/backends/wavesaudio/wscript

index bb7e4de17b94e6e28e7f1cd1de71b14ea10029fb..03cb34fbd27b1e543c03b3920c8b5b997db2bc92 100755 (executable)
@@ -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',