From 91518b32e57d4db834d33e0a7d5df282154947c1 Mon Sep 17 00:00:00 2001 From: jens Date: Wed, 26 Apr 2023 10:48:03 +0200 Subject: [PATCH] - added Makefile for windows target --- Source/synth/Makefile.win | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Source/synth/Makefile.win diff --git a/Source/synth/Makefile.win b/Source/synth/Makefile.win new file mode 100644 index 0000000..bd50fbe --- /dev/null +++ b/Source/synth/Makefile.win @@ -0,0 +1,11 @@ +include $(MAKE_HOME)/defaults.win.mk + +LIBSRC_PATH ?= $(realpath ../../../../libsrc) +VST2_SDK_PATH ?= $(realpath ../../sdk/vst/vstsdk2.4) + +include config.mk + +INCLUDES ?= -I $(LIBSRC_PATH) -I $(VST2_SDK_PATH) +DEFINES += -Dradio_float_t=float -Dfir_float_t=float -Dsynth_float_t=float + +include $(MAKE_HOME)/compile.mk