Extra "ports" of juce-based plugins using the distrho build system
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.

25 lines
445B

  1. dofile("../../../scripts/make-project.lua")
  2. package = make_juce_lv2_project("protoplug-fx")
  3. package.defines = {
  4. package.defines,
  5. "PROTOPLUGFX=1"
  6. }
  7. package.includepaths = {
  8. package.includepaths,
  9. "../Source",
  10. "../JuceLibraryCode"
  11. }
  12. package.files = {
  13. matchfiles (
  14. "../Source/*.cpp",
  15. "../Source/guiclasses/*.cpp",
  16. "../Source/vflib/*.cpp",
  17. "../../../libs/juce-plugin/JucePluginMain.cpp"
  18. )
  19. }