mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 12:19:33 +01:00
ALSA backend (based on Dummy backend and zita-alsa-pcmi)
This commit is contained in:
parent
b517695256
commit
8e9b02cfa2
8 changed files with 3229 additions and 1 deletions
39
libs/backends/alsa/wscript
Normal file
39
libs/backends/alsa/wscript
Normal 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'
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue