26 lines
625 B
Python
26 lines
625 B
Python
#!/usr/bin/env python
|
|
import os
|
|
|
|
I18N_PACKAGE = 'pulse-backend'
|
|
|
|
def options(opt):
|
|
pass
|
|
|
|
def configure(conf):
|
|
pass
|
|
|
|
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'
|
|
]
|