A few more vst3 related fixes

This commit is contained in:
falkTX 2022-08-07 05:22:19 +01:00
parent fceac5ee77
commit f5da3d7ffc
2 changed files with 8 additions and 4 deletions

2
dpf

@ -1 +1 @@
Subproject commit 30af4179952d739b43627e50780d460e189a86db Subproject commit 352bcbfb7268d7ba8badb3be6b06cbef74c1bbc2

View file

@ -345,13 +345,17 @@ BUILD_CXX_FLAGS += -DCARDINAL_PLUGIN_PREFIX='"$(PREFIX)"'
# Enable all possible plugin types and setup resources # Enable all possible plugin types and setup resources
ifeq ($(CARDINAL_VARIANT),main) ifeq ($(CARDINAL_VARIANT),main)
all: jack lv2 vst3 TARGETS = lv2 vst3
ifeq ($(HAVE_JACK),true)
TARGETS += jack
endif
else ifeq ($(CARDINAL_VARIANT),native) else ifeq ($(CARDINAL_VARIANT),native)
all: jack TARGETS = jack
else else
all: lv2 vst2 vst3 static TARGETS = lv2 vst2 vst3 static
endif endif
all: $(TARGETS)
lv2: $(LV2_RESOURCES) lv2: $(LV2_RESOURCES)
vst2: $(VST2_RESOURCES) vst2: $(VST2_RESOURCES)
vst3: $(VST3_RESOURCES) vst3: $(VST3_RESOURCES)