28 lines
385 B
Plaintext
28 lines
385 B
Plaintext
|
#!/usr/bin/env python
|
||
|
|
||
|
def options(opt):
|
||
|
pass
|
||
|
|
||
|
def configure(conf):
|
||
|
pass
|
||
|
|
||
|
def build(bld):
|
||
|
bld.stlib(
|
||
|
source = '''
|
||
|
JACK/Client.C
|
||
|
JACK/Port.C
|
||
|
Log_Entry.C
|
||
|
Loggable.C
|
||
|
NSM/Client.C
|
||
|
OSC/Endpoint.C
|
||
|
Thread.C
|
||
|
debug.C
|
||
|
dsp.C
|
||
|
file.C
|
||
|
string_util.C
|
||
|
''',
|
||
|
includes = '.',
|
||
|
export_incdirs = [ '.', 'nonlib'],
|
||
|
uselib = 'LIBLO JACK',
|
||
|
target = 'nonlib')
|