From 58339d454ff21d8563baaf59b09ad5732966e85b Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 22 Oct 2022 15:43:44 +0100 Subject: [PATCH] Update dpf and enable clap Signed-off-by: falkTX --- dpf | 2 +- plugins/Nekobi/DistrhoPluginInfo.h | 7 ++++--- plugins/Nekobi/Makefile | 20 +------------------- 3 files changed, 6 insertions(+), 23 deletions(-) diff --git a/dpf b/dpf index 1aa5892..57fcfca 160000 --- a/dpf +++ b/dpf @@ -1 +1 @@ -Subproject commit 1aa5892a13d7797935964443ae7dda6e08c470cd +Subproject commit 57fcfcaf07f8dced0f643aff46bd0d3bb1b0b476 diff --git a/plugins/Nekobi/DistrhoPluginInfo.h b/plugins/Nekobi/DistrhoPluginInfo.h index a1c2af3..41ed912 100644 --- a/plugins/Nekobi/DistrhoPluginInfo.h +++ b/plugins/Nekobi/DistrhoPluginInfo.h @@ -18,9 +18,10 @@ #ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED #define DISTRHO_PLUGIN_INFO_H_INCLUDED -#define DISTRHO_PLUGIN_BRAND "DISTRHO" -#define DISTRHO_PLUGIN_NAME "Nekobi" -#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/Nekobi" +#define DISTRHO_PLUGIN_BRAND "DISTRHO" +#define DISTRHO_PLUGIN_NAME "Nekobi" +#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/Nekobi" +#define DISTRHO_PLUGIN_CLAP_ID "studio.kx.distrho.Nekobi" #define DISTRHO_PLUGIN_HAS_UI 1 #define DISTRHO_PLUGIN_IS_RT_SAFE 1 diff --git a/plugins/Nekobi/Makefile b/plugins/Nekobi/Makefile index 98b5f94..c89dfb1 100644 --- a/plugins/Nekobi/Makefile +++ b/plugins/Nekobi/Makefile @@ -35,24 +35,6 @@ LINK_FLAGS += -pthread # -------------------------------------------------------------- # Enable all possible plugin types -TARGETS += jack -TARGETS += dssi_dsp - -ifeq ($(HAVE_CAIRO_OR_OPENGL),true) -ifeq ($(HAVE_LIBLO),true) -TARGETS += dssi_ui -endif -endif - -ifeq ($(HAVE_CAIRO_OR_OPENGL),true) -TARGETS += lv2_sep -else -TARGETS += lv2_dsp -endif - -TARGETS += vst2 -TARGETS += vst3 - -all: $(TARGETS) +all: jack dssi lv2_sep vst2 vst3 clap # --------------------------------------------------------------