Non reinvents the DAW. Powerful enough to form a complete studio, fast and light enough to run on low-end hardware like the eeePC or Raspberry Pi, and so reliable that it can be used live https://non.tuxfamily.org/
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.

30 lines
457B

  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. '''
  10. About_Dialog.fl
  11. Fl_Menu_Settings.C
  12. Fl_Scalepack.C
  13. Fl_Text_Edit_Window.fl
  14. Fl_Value_SliderX.C
  15. Fl_DialX.C
  16. Fl_SliderX.C
  17. New_Project_Dialog.fl
  18. event_name.C
  19. menu_popup.C
  20. test_press.C
  21. focus_frame.C
  22. ''',
  23. includes = '.',
  24. export_incdirs = [ '.' 'FL' ],
  25. uselib = 'PTHREAD NTK',
  26. target = 'fl_widgets')