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.

28 lines
393B

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