Assists music production by grouping standalone programs into sessions. Community version of "Non Session Manager".
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
458B

  1. #!/usr/bin/env python
  2. def options(opt):
  3. pass
  4. def configure(conf):
  5. pass
  6. def build(bld):
  7. bld.stlib(
  8. source = '''
  9. JACK/Client.C
  10. JACK/Port.C
  11. Log_Entry.C
  12. Loggable.C
  13. NSM/Client.C
  14. OSC/Endpoint.C
  15. Thread.C
  16. debug.C
  17. dsp.C
  18. file.C
  19. MIDI/midievent.C
  20. string_util.C
  21. MIDI/event_list.C
  22. MIDI/event.C
  23. MIDI/midievent.C
  24. ''',
  25. includes = '.',
  26. export_incdirs = [ '.', 'nonlib'],
  27. uselib = 'LIBLO JACK PTHREAD',
  28. target = 'nonlib')