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.

24 lines
624B

  1. ###############################################################################
  2. plugin_srcs = files([
  3. 'source/BinaryData.cpp',
  4. 'source/PluginEditor.cpp',
  5. 'source/PluginProcessor.cpp',
  6. 'source/dsp/BandLimit.cpp',
  7. 'source/dsp/delaytabdsp.cpp',
  8. 'source/dsp/pitcheddelay.cpp',
  9. 'source/dsp/simpledetune.cpp',
  10. 'source/gui/DelayGraph.cpp',
  11. 'source/gui/pitcheddelaytab.cpp',
  12. ])
  13. plugin_name = 'PitchedDelay'
  14. if host_machine.cpu_family() == 'arm'
  15. plugin_extra_build_flags = [
  16. '-mfpu=neon',
  17. ]
  18. endif
  19. ###############################################################################