Update dpf and enable clap

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2022-10-22 15:43:44 +01:00
parent 27634ee8af
commit 58339d454f
No known key found for this signature in database
GPG Key ID: CDBAA37ABC74FBA0
3 changed files with 6 additions and 23 deletions

2
dpf

@ -1 +1 @@
Subproject commit 1aa5892a13d7797935964443ae7dda6e08c470cd Subproject commit 57fcfcaf07f8dced0f643aff46bd0d3bb1b0b476

View File

@ -21,6 +21,7 @@
#define DISTRHO_PLUGIN_BRAND "DISTRHO" #define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "Nekobi" #define DISTRHO_PLUGIN_NAME "Nekobi"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/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_HAS_UI 1
#define DISTRHO_PLUGIN_IS_RT_SAFE 1 #define DISTRHO_PLUGIN_IS_RT_SAFE 1

View File

@ -35,24 +35,6 @@ LINK_FLAGS += -pthread
# -------------------------------------------------------------- # --------------------------------------------------------------
# Enable all possible plugin types # Enable all possible plugin types
TARGETS += jack all: jack dssi lv2_sep vst2 vst3 clap
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)
# -------------------------------------------------------------- # --------------------------------------------------------------