Puls der Zeit
Prototype a basic stereo-playback only pulseaudio backend.
This commit is contained in:
32
libs/backends/pulseaudio/wscript
Normal file
32
libs/backends/pulseaudio/wscript
Normal file
@@ -0,0 +1,32 @@
|
||||
#!/usr/bin/env python
|
||||
from waflib.extras import autowaf as autowaf
|
||||
import os
|
||||
import sys
|
||||
import re
|
||||
|
||||
I18N_PACKAGE = 'pulse-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 = [
|
||||
'pulseaudio_backend.cc',
|
||||
]
|
||||
obj.includes = ['.']
|
||||
obj.name = 'pulseaudio_backend'
|
||||
obj.target = 'pulseaudio_backend'
|
||||
obj.use = 'libardour libpbd'
|
||||
obj.uselib = 'PULSEAUDIO GLIBMM XML'
|
||||
obj.install_path = os.path.join(bld.env['LIBDIR'], 'backends')
|
||||
obj.defines = ['PACKAGE="' + I18N_PACKAGE + '"',
|
||||
'ARDOURBACKEND_DLL_EXPORTS'
|
||||
]
|
||||
Reference in New Issue
Block a user