Skeleton backend for brave volunteers.

callback based backend based on CoreAudio/Midi
backend (sans the actual system/HW _pcmio, 
_midiio)
This commit is contained in:
Robin Gareus
2015-03-30 21:18:18 +02:00
parent f74acc6e79
commit 16be88cdb6
5 changed files with 2362 additions and 1 deletions

View File

@@ -0,0 +1,33 @@
#!/usr/bin/env python
from waflib.extras import autowaf as autowaf
from waflib import Options
import os
import sys
import re
I18N_PACKAGE = 'asio-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 = [ 'asio_backend.cc',
# 'asio_io.cc',
# 'mme_io.cc'
]
obj.includes = ['.']
obj.name = 'asio_backend'
obj.target = 'asio_backend'
obj.use = 'libardour libpbd'
obj.install_path = os.path.join(bld.env['LIBDIR'], 'backends')
obj.defines = ['PACKAGE="' + I18N_PACKAGE + '"',
'ARDOURBACKEND_DLL_EXPORTS'
]