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.

39 lines
888B

  1. ###############################################################################
  2. if linux_headless
  3. plugin_srcs = files([
  4. 'source/ADSRenv.cpp',
  5. 'source/synth.cpp',
  6. ])
  7. else
  8. plugin_srcs = files([
  9. 'source/ADSRenv.cpp',
  10. 'source/KeyboardButton.cpp',
  11. 'source/PresetComboBox.cpp',
  12. 'source/RotatingToggleButton.cpp',
  13. 'source/about.cpp',
  14. 'source/editor.cpp',
  15. 'source/synth.cpp',
  16. 'source/tabbed-editor.cpp',
  17. ])
  18. endif
  19. plugin_name = 'Wolpertinger'
  20. plugin_extra_build_flags = [
  21. '-DWOLPVERSION=0041',
  22. '-DWOLPVERSIONSTRING=0.4.1',
  23. ]
  24. if buildtype == 'debug'
  25. plugin_extra_build_flags += [
  26. '-DCONFIGURATION=Debug',
  27. ]
  28. else
  29. plugin_extra_build_flags += [
  30. '-DCONFIGURATION=Release',
  31. ]
  32. endif
  33. ###############################################################################