2019-07-25 10:39:23 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
import os
|
|
|
|
|
|
|
|
I18N_PACKAGE = 'pulse-backend'
|
|
|
|
|
|
|
|
def options(opt):
|
2022-01-25 11:43:36 -05:00
|
|
|
pass
|
2019-07-25 10:39:23 -04:00
|
|
|
|
|
|
|
def configure(conf):
|
2022-01-22 16:09:13 -05:00
|
|
|
pass
|
2019-07-25 10:39:23 -04:00
|
|
|
|
|
|
|
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'
|
|
|
|
]
|