From a449da1881e3d5bffeb45be476ac34302870708d Mon Sep 17 00:00:00 2001 From: falkTX Date: Tue, 15 Mar 2022 11:35:29 +0000 Subject: [PATCH] Fix vst3 filename for 32bit windows Signed-off-by: falkTX --- Makefile.plugins.mk | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile.plugins.mk b/Makefile.plugins.mk index 3a409351..f326c690 100644 --- a/Makefile.plugins.mk +++ b/Makefile.plugins.mk @@ -109,13 +109,15 @@ endif ifeq ($(LINUX),true) VST3_FILENAME = $(NAME).vst3/Contents/$(TARGET_PROCESSOR)-linux/$(NAME).so -endif -ifeq ($(MACOS),true) +else ifeq ($(MACOS),true) VST3_CONTENTS = $(NAME).vst3/Contents VST3_FILENAME = $(VST3_CONTENTS)/MacOS/$(NAME) +else ifeq ($(WINDOWS),true) +ifeq ($(CPU_I386),true) +VST3_FILENAME = $(NAME).vst3/Contents/x86-win/$(NAME).vst3 +else ifeq ($(CPU_X86_64),true) +VST3_FILENAME = $(NAME).vst3/Contents/x86_64-win/$(NAME).vst3 endif -ifeq ($(WINDOWS),true) -VST3_FILENAME = $(NAME).vst3/Contents/$(TARGET_PROCESSOR)-win/$(NAME).vst3 endif # ---------------------------------------------------------------------------------------------------------------------