Paul Davis
9dddffcc8f
git-svn-id: svn://localhost/ardour2/branches/3.0@6265 d708f5d6-7413-0410-9779-e7cbd77b26cf
45 lines
1.0 KiB
Python
45 lines
1.0 KiB
Python
import autowaf
|
|
import os
|
|
|
|
libappleutility_sources = [
|
|
'AUOutputBL.cpp',
|
|
'AUParamInfo.cpp',
|
|
'CAAudioChannelLayout.cpp',
|
|
'CAAudioChannelLayoutObject.cpp',
|
|
'CAAudioFile.cpp',
|
|
'CAAudioUnit.cpp',
|
|
'CAAUParameter.cpp',
|
|
'CABufferList.cpp',
|
|
'CACFDictionary.cpp',
|
|
'CACFNumber.cpp',
|
|
'CACFString.cpp',
|
|
'CAComponent.cpp',
|
|
'CAComponentDescription.cpp',
|
|
'CADebugMacros.cpp',
|
|
'CAStreamBasicDescription.cpp',
|
|
'CAXException.cpp'
|
|
]
|
|
|
|
def set_options(opt):
|
|
autowaf.set_options(opt)
|
|
|
|
def configure(conf):
|
|
autowaf.configure(conf)
|
|
|
|
def build(bld):
|
|
obj = bld.new_task_gen('cxx', 'shlib',
|
|
uselib = 'COREAUDIO CORESERVICES COREFOUNDATION AUDIOTOOLBOX AUDIOUNITS OSX GTKOSX')
|
|
obj.source = libappleutility_sources
|
|
obj.export_incdirs = ['.']
|
|
obj.includes = ['.']
|
|
obj.name = 'libappleutility'
|
|
obj.target = 'appleutility'
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'appleutility')
|
|
|
|
|
|
def shutdown():
|
|
autowaf.shutdown()
|
|
|
|
def i18n(bld):
|
|
pass
|