2015-03-05 00:22:33 -05:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from waflib.extras import autowaf as autowaf
|
2015-03-06 13:03:16 -05:00
|
|
|
from waflib import Options
|
2015-03-05 00:22:33 -05:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import re
|
|
|
|
|
|
|
|
I18N_PACKAGE = 'coreaudio-backend'
|
|
|
|
|
|
|
|
# Mandatory variables
|
|
|
|
top = '.'
|
|
|
|
out = 'build'
|
|
|
|
|
|
|
|
def options(opt):
|
|
|
|
autowaf.set_options(opt)
|
|
|
|
|
|
|
|
def configure(conf):
|
|
|
|
autowaf.configure(conf)
|
2015-03-06 13:03:16 -05:00
|
|
|
if Options.options.ppc:
|
|
|
|
conf.env['build_arch'] = "ppc"
|
2015-03-05 00:22:33 -05:00
|
|
|
|
|
|
|
def build(bld):
|
|
|
|
obj = bld(features = 'cxx cxxshlib')
|
|
|
|
obj.source = [ 'coreaudio_backend.cc',
|
|
|
|
'coreaudio_pcmio.cc',
|
|
|
|
'coremidi_io.cc'
|
|
|
|
]
|
|
|
|
obj.includes = ['.']
|
|
|
|
obj.name = 'coreaudio_backend'
|
|
|
|
obj.target = 'coreaudio_backend'
|
|
|
|
obj.use = 'libardour libpbd'
|
|
|
|
obj.framework = [ 'CoreAudio', 'AudioToolbox', 'CoreServices', 'CoreMidi' ]
|
|
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'backends')
|
|
|
|
obj.defines = ['PACKAGE="' + I18N_PACKAGE + '"',
|
2015-03-06 22:15:02 -05:00
|
|
|
'ARDOURBACKEND_DLL_EXPORTS'
|
2015-03-05 00:22:33 -05:00
|
|
|
]
|
2015-03-05 21:21:47 -05:00
|
|
|
|
2015-03-06 13:03:16 -05:00
|
|
|
# use new coreaudio API (the old one was deprecated in 10.6, yet still works)
|
|
|
|
# only use with OSX intel 10.6 or later, but for all OSX/PPC (<= 10.6)
|
|
|
|
if not bld.env['build_target'] in ['panther', 'tiger', 'leopard']:
|
2015-03-07 10:10:45 -05:00
|
|
|
if not (bld.env['build_target'] == 'snowleopard' and bld.env['build_arch'] == "ppc"):
|
2015-03-06 13:03:16 -05:00
|
|
|
obj.defines += ['COREAUDIO_108']
|