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.

23 lines
389B

  1. #!/usr/bin/env python
  2. def options(opt):
  3. pass
  4. def configure(conf):
  5. pass
  6. def build(bld):
  7. #Thread is needed by OSC/Endpoint
  8. #File is for nsmd lockfiles
  9. bld.stlib(
  10. source = '''
  11. OSC/Endpoint.cpp
  12. Thread.cpp
  13. debug.cpp
  14. file.cpp
  15. ''',
  16. includes = '.',
  17. export_incdirs = [ '.', 'nonlib'],
  18. uselib = 'LIBLO JACK PTHREAD',
  19. target = 'nonlib')