More details for lv2 export (category, CV type, label/brand)

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2022-06-29 14:14:14 +01:00
parent aabd9f9342
commit dd5344d2b8
10 changed files with 79 additions and 10 deletions

View file

@ -17,9 +17,21 @@
#include "Fundamental/src/SEQ3.cpp"
#define PLUGIN_BRAND "VCV Fundamental"
#define PLUGIN_LABEL "SEQ3"
#define PLUGIN_MODEL modelSEQ3
#define PLUGIN_CV_INPUTS {1,1,1,1,1}
#define PLUGIN_CV_OUTPUTS {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}
#define PLUGIN_CV_INPUTS {Bi,Uni,Uni,Uni,Uni}
#define PLUGIN_CV_OUTPUTS { \
/* trigger */ \
Uni, \
/* 3 cv outs */ \
Bi,Bi,Bi, \
/* 8 steps */ \
Uni,Uni,Uni,Uni,Uni,Uni,Uni,Uni, \
/* steps, clk, run, reset */ \
Uni,Uni,Uni,Uni \
}
#define PLUGIN_LV2_CATEGORY "mod:CVPlugin"
#include "lv2plugin.cpp"
#include "export.cpp"