ALSA backend (based on Dummy backend and zita-alsa-pcmi)

This commit is contained in:
Robin Gareus 2014-06-02 14:29:19 +02:00
parent b517695256
commit 8e9b02cfa2
8 changed files with 3229 additions and 1 deletions

View file

@ -0,0 +1,39 @@
#!/usr/bin/env python
from waflib.extras import autowaf as autowaf
import os
import sys
import re
# Library version (UNIX style major, minor, micro)
# major increment <=> incompatible changes
# minor increment <=> compatible changes (additions)
# micro increment <=> no interface changes
ALSABACKEND_VERSION = '0.0.1'
I18N_PACKAGE = 'alsa-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 = [
'alsa_audiobackend.cc',
'zita-alsa-pcmi.cc',
]
obj.includes = ['.']
obj.name = 'alsa_audiobackend'
obj.target = 'alsa_audiobackend'
obj.use = 'libardour libpbd'
obj.uselib = 'ALSA'
obj.vnum = ALSABACKEND_VERSION
obj.install_path = os.path.join(bld.env['LIBDIR'], 'backends')
obj.defines = ['PACKAGE="' + I18N_PACKAGE + '"',
'ARDOURBACKEND_DLL_EXPORTS'
]