From 9f863606115d13a7604a6b6d4e8145974f0805c7 Mon Sep 17 00:00:00 2001 From: Gordon JC Pearce Date: Wed, 31 Dec 2025 20:39:06 +0000 Subject: [PATCH] more make options for different plugin formats --- plugin/DistrhoPluginInfo.h | 11 ++++++++++- plugin/Makefile | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/plugin/DistrhoPluginInfo.h b/plugin/DistrhoPluginInfo.h index 85daadc..665722b 100644 --- a/plugin/DistrhoPluginInfo.h +++ b/plugin/DistrhoPluginInfo.h @@ -23,6 +23,15 @@ #define DISTRHO_PLUGIN_NAME "peacock-8" #define DISTRHO_PLUGIN_URI "https://gjcp.net/plugins/peacock" +#define DISTRHO_PLUGIN_CLAP_ID "net.gjcp.peacock" +#define DISTRHO_PLUGIN_CLAP_FEATURES "instrument,synthesizer,stereo" + +#define DISTRHO_PLUGIN_BRAND_ID GJCP +#define DISTRHO_PLUGIN_UNIQUE_ID Pfau + +#define DISTRHO_PLUGIN_LV2_CATEGORY "lv2:InstrumentPlugin" +#define DISTRHO_PLUGIN_VST_CATEGORY "Fx|Instrument" + #define DISTRHO_PLUGIN_NUM_INPUTS 0 #define DISTRHO_PLUGIN_NUM_OUTPUTS 2 #define DISTRHO_PLUGIN_IS_SYNTH 1 @@ -69,4 +78,4 @@ }; -#endif \ No newline at end of file +#endif diff --git a/plugin/Makefile b/plugin/Makefile index 47b51bc..051ef24 100644 --- a/plugin/Makefile +++ b/plugin/Makefile @@ -34,7 +34,7 @@ include ../dpf/Makefile.plugins.mk SKIP_NATIVE_AUDIO_FALLBACK = true -TARGETS += jack lv2_sep +TARGETS += jack lv2_sep vst3 clap all: $(TARGETS)