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.

29 lines
410B

  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. ''',
  22. includes = '.',
  23. export_incdirs = [ '.', 'nonlib'],
  24. uselib = 'LIBLO JACK PTHREAD',
  25. target = 'nonlib')