2012-11-14 10:54:03 +01:00
|
|
|
#!/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
|
2013-06-06 01:26:36 +02:00
|
|
|
MIDI/midievent.C
|
2012-11-14 10:54:03 +01:00
|
|
|
string_util.C
|
2012-10-29 06:31:29 +01:00
|
|
|
MIDI/event_list.C
|
|
|
|
MIDI/event.C
|
|
|
|
MIDI/midievent.C
|
2012-11-14 10:54:03 +01:00
|
|
|
''',
|
|
|
|
includes = '.',
|
|
|
|
export_incdirs = [ '.', 'nonlib'],
|
2012-12-10 07:08:51 +01:00
|
|
|
uselib = 'LIBLO JACK PTHREAD',
|
2012-11-14 10:54:03 +01:00
|
|
|
target = 'nonlib')
|