13
0

fix incorrect cut-n-paste across synergy

This commit is contained in:
Paul Davis 2014-06-25 12:30:57 -04:00
parent 66af3fbda0
commit 3f776ce7d9

View File

@ -31,11 +31,11 @@ def build(bld):
else:
obj = bld(features = 'c cxx cxxshlib')
if sys.platform == 'darwin':
if bld.env['build_target'] not in [ 'lion' ]:
obj.framework = 'CoreMidi'
else:
obj.framework = 'CoreMIDI'
if sys.platform == 'darwin':
if bld.env['build_target'] not in [ 'lion' ]:
obj.framework = 'CoreMidi'
else:
obj.framework = 'CoreMIDI'
obj.source = [
'waves_audiobackend.cc',