Robin Gareus
ba78359129
uselib is no longer implicit (inherited by .use). This is still incomplete, some uselibs for non-linux variants may be missing. bld.is_defined("HAVE_XXX") also no longer works and will have to be changed (I think to bld.env["HAVE_XXX"]) in countless places.
37 lines
907 B
Python
37 lines
907 B
Python
#!/usr/bin/env python
|
|
from waflib.extras import autowaf as autowaf
|
|
import os
|
|
import sys
|
|
import re
|
|
|
|
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',
|
|
'alsa_midi.cc',
|
|
'alsa_rawmidi.cc',
|
|
'alsa_sequencer.cc',
|
|
'zita-alsa-pcmi.cc',
|
|
]
|
|
obj.includes = ['.']
|
|
obj.name = 'alsa_audiobackend'
|
|
obj.target = 'alsa_audiobackend'
|
|
obj.use = 'libardour libpbd ardouralsautil'
|
|
obj.uselib = 'ALSA GLIBMM XML'
|
|
obj.install_path = os.path.join(bld.env['LIBDIR'], 'backends')
|
|
obj.defines = ['PACKAGE="' + I18N_PACKAGE + '"',
|
|
'ARDOURBACKEND_DLL_EXPORTS'
|
|
]
|