- added Make files for windows target using mingw

This commit is contained in:
2023-04-26 10:47:27 +02:00
parent 51311d41c0
commit 05ec69ca99
3 changed files with 84 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
include $(MAKE_HOME)/defaults.win.mk
LIBSRC_PATH ?= $(realpath ../../../libsrc)
JUCE_PATH ?= $(realpath ../sdk/juce/JUCE-3.1.1)
VST2_SDK_PATH ?= $(realpath ../sdk/vst/vstsdk2.4)
include config.mk
INCLUDES += -I $(LIBSRC_PATH) -I $(JUCE_PATH) -I $(VST2_SDK_PATH)
DEFINES += -Dradio_float_t=float -Dfir_float_t=float -Dsynth_float_t=float
CXXFLAGS += -std=c++11
# Reduce Blaze warnings
CXXFLAGS += -Wno-volatile -Wno-deprecated-declarations
DEFINES += -DJUCE_GCC=1 -DLINUX=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000
include $(MAKE_HOME)/compile.mk