mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
get started on coreaudio/midi backend
This commit is contained in:
parent
9e7ea2e57c
commit
f6f64d3f81
9 changed files with 3274 additions and 1 deletions
33
libs/backends/coreaudio/wscript
Normal file
33
libs/backends/coreaudio/wscript
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
#!/usr/bin/env python
|
||||
from waflib.extras import autowaf as autowaf
|
||||
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)
|
||||
|
||||
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 + '"',
|
||||
'ARDOURBACKEND_DLL_EXPORTS', 'COREAUDIO_108'
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue