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.

38 lines
1.3KB

  1. /*
  2. * DISTRHO Cardinal Plugin
  3. * Copyright (C) 2021-2022 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 3 of
  8. * the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * For a full copy of the GNU General Public License see the LICENSE file.
  16. */
  17. #include "Fundamental/src/SEQ3.cpp"
  18. #define PLUGIN_BRAND "VCV Fundamental"
  19. #define PLUGIN_LABEL "SEQ3"
  20. #define PLUGIN_MODEL modelSEQ3
  21. #define PLUGIN_CV_INPUTS {Bi,Uni,Uni,Uni,Uni}
  22. #define PLUGIN_CV_OUTPUTS { \
  23. /* trigger */ \
  24. Uni, \
  25. /* 3 cv outs */ \
  26. Bi,Bi,Bi, \
  27. /* 8 steps */ \
  28. Uni,Uni,Uni,Uni,Uni,Uni,Uni,Uni, \
  29. /* steps, clk, run, reset */ \
  30. Uni,Uni,Uni,Uni \
  31. }
  32. #define PLUGIN_LV2_CATEGORY "mod:CVPlugin"
  33. #include "lv2plugin.cpp"
  34. #include "export.cpp"