| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -98,6 +98,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -18,13 +18,13 @@ include_directories( AFTER | |||||
| enable_language(ASM) | enable_language(ASM) | ||||
| IF(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| IF(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| add_definitions("-DDEBUG=1" "-D_DEBUG=1") | add_definitions("-DDEBUG=1" "-D_DEBUG=1") | ||||
| ELSEIF(JUCE_BUILD_CONFIGFURATION MATCHES "RELEASE") | |||||
| ELSEIF(JUCE_BUILD_CONFIGURATION MATCHES "RELEASE") | |||||
| add_definitions("-DNDEBUG=1") | add_definitions("-DNDEBUG=1") | ||||
| ELSE(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| ELSE(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| MESSAGE( FATAL_ERROR "No matching build-configuration found." ) | MESSAGE( FATAL_ERROR "No matching build-configuration found." ) | ||||
| ENDIF(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| ENDIF(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| add_library( ${BINARY_NAME} | add_library( ${BINARY_NAME} | ||||
| @@ -54,7 +54,7 @@ android { | |||||
| } | } | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | |||||
| arguments "-DJUCE_BUILD_CONFIGURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | |||||
| } | } | ||||
| } | } | ||||
| @@ -63,7 +63,7 @@ android { | |||||
| release_ { | release_ { | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | |||||
| arguments "-DJUCE_BUILD_CONFIGURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | |||||
| } | } | ||||
| } | } | ||||
| @@ -37,6 +37,7 @@ ifeq ($(CONFIG),Debug) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCE_USE_CURL=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCE_USE_CURL=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := AnalyticsCollection | JUCE_TARGET_APP := AnalyticsCollection | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | ||||
| @@ -58,6 +59,7 @@ ifeq ($(CONFIG),Release) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCE_USE_CURL=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCE_USE_CURL=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := AnalyticsCollection | JUCE_TARGET_APP := AnalyticsCollection | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | ||||
| @@ -85,7 +87,7 @@ $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) : check-pkg-config $(OBJECTS_APP) $(RESOURCES) | |||||
| -$(V_AT)mkdir -p $(JUCE_BINDIR) | -$(V_AT)mkdir -p $(JUCE_BINDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_LIBDIR) | -$(V_AT)mkdir -p $(JUCE_LIBDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_OUTDIR) | -$(V_AT)mkdir -p $(JUCE_OUTDIR) | ||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(JUCE_LDFLAGS_APP) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | ||||
| -$(V_AT)mkdir -p $(JUCE_OBJDIR) | -$(V_AT)mkdir -p $(JUCE_OBJDIR) | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -99,6 +99,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -100,6 +100,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -37,6 +37,7 @@ ifeq ($(CONFIG),Debug) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := BlocksDrawing | JUCE_TARGET_APP := BlocksDrawing | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | ||||
| @@ -58,6 +59,7 @@ ifeq ($(CONFIG),Release) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := BlocksDrawing | JUCE_TARGET_APP := BlocksDrawing | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | ||||
| @@ -93,7 +95,7 @@ $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) : check-pkg-config $(OBJECTS_APP) $(RESOURCES) | |||||
| -$(V_AT)mkdir -p $(JUCE_BINDIR) | -$(V_AT)mkdir -p $(JUCE_BINDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_LIBDIR) | -$(V_AT)mkdir -p $(JUCE_LIBDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_OUTDIR) | -$(V_AT)mkdir -p $(JUCE_OUTDIR) | ||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(JUCE_LDFLAGS_APP) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | ||||
| -$(V_AT)mkdir -p $(JUCE_OBJDIR) | -$(V_AT)mkdir -p $(JUCE_OBJDIR) | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -99,6 +99,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -37,6 +37,7 @@ ifeq ($(CONFIG),Debug) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := BlocksMonitor | JUCE_TARGET_APP := BlocksMonitor | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | ||||
| @@ -58,6 +59,7 @@ ifeq ($(CONFIG),Release) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := BlocksMonitor | JUCE_TARGET_APP := BlocksMonitor | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | ||||
| @@ -92,7 +94,7 @@ $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) : check-pkg-config $(OBJECTS_APP) $(RESOURCES) | |||||
| -$(V_AT)mkdir -p $(JUCE_BINDIR) | -$(V_AT)mkdir -p $(JUCE_BINDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_LIBDIR) | -$(V_AT)mkdir -p $(JUCE_LIBDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_OUTDIR) | -$(V_AT)mkdir -p $(JUCE_OUTDIR) | ||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(JUCE_LDFLAGS_APP) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | ||||
| -$(V_AT)mkdir -p $(JUCE_OBJDIR) | -$(V_AT)mkdir -p $(JUCE_OBJDIR) | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -99,6 +99,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -37,6 +37,7 @@ ifeq ($(CONFIG),Debug) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := BlocksSynth | JUCE_TARGET_APP := BlocksSynth | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | ||||
| @@ -58,6 +59,7 @@ ifeq ($(CONFIG),Release) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := BlocksSynth | JUCE_TARGET_APP := BlocksSynth | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | ||||
| @@ -92,7 +94,7 @@ $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) : check-pkg-config $(OBJECTS_APP) $(RESOURCES) | |||||
| -$(V_AT)mkdir -p $(JUCE_BINDIR) | -$(V_AT)mkdir -p $(JUCE_BINDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_LIBDIR) | -$(V_AT)mkdir -p $(JUCE_LIBDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_OUTDIR) | -$(V_AT)mkdir -p $(JUCE_OUTDIR) | ||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(JUCE_LDFLAGS_APP) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | ||||
| -$(V_AT)mkdir -p $(JUCE_OBJDIR) | -$(V_AT)mkdir -p $(JUCE_OBJDIR) | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -99,6 +99,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -37,6 +37,7 @@ ifeq ($(CONFIG),Debug) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := WavetableBouncingEditor | JUCE_TARGET_APP := WavetableBouncingEditor | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | ||||
| @@ -58,6 +59,7 @@ ifeq ($(CONFIG),Release) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := WavetableBouncingEditor | JUCE_TARGET_APP := WavetableBouncingEditor | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -Os $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -Os $(CFLAGS) | ||||
| @@ -93,7 +95,7 @@ $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) : check-pkg-config $(OBJECTS_APP) $(RESOURCES) | |||||
| -$(V_AT)mkdir -p $(JUCE_BINDIR) | -$(V_AT)mkdir -p $(JUCE_BINDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_LIBDIR) | -$(V_AT)mkdir -p $(JUCE_LIBDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_OUTDIR) | -$(V_AT)mkdir -p $(JUCE_OUTDIR) | ||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(JUCE_LDFLAGS_APP) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(JUCE_OBJDIR)/MainComponent_a6ffb4a5.o: ../../Source/MainComponent.cpp | $(JUCE_OBJDIR)/MainComponent_a6ffb4a5.o: ../../Source/MainComponent.cpp | ||||
| -$(V_AT)mkdir -p $(JUCE_OBJDIR) | -$(V_AT)mkdir -p $(JUCE_OBJDIR) | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -99,6 +99,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -998,6 +998,9 @@ | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | ||||
| <ExcludedFromBuild>true</ExcludedFromBuild> | <ExcludedFromBuild>true</ExcludedFromBuild> | ||||
| </ClCompile> | </ClCompile> | ||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.cpp"> | |||||
| <ExcludedFromBuild>true</ExcludedFromBuild> | |||||
| </ClCompile> | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | ||||
| <ExcludedFromBuild>true</ExcludedFromBuild> | <ExcludedFromBuild>true</ExcludedFromBuild> | ||||
| </ClCompile> | </ClCompile> | ||||
| @@ -2266,12 +2269,14 @@ | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Gain.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Gain.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.h"/> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessContext.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessContext.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorChain.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorChain.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorDuplicator.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorDuplicator.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Reverb.h"/> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_WaveShaper.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_WaveShaper.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\juce_dsp.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\juce_dsp.h"/> | ||||
| @@ -1306,6 +1306,9 @@ | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClCompile> | </ClCompile> | ||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.cpp"> | |||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | |||||
| </ClCompile> | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClCompile> | </ClCompile> | ||||
| @@ -3465,6 +3468,9 @@ | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.h"> | |||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | |||||
| </ClInclude> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| @@ -3483,6 +3489,9 @@ | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Reverb.h"> | |||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | |||||
| </ClInclude> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| @@ -999,6 +999,9 @@ | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | ||||
| <ExcludedFromBuild>true</ExcludedFromBuild> | <ExcludedFromBuild>true</ExcludedFromBuild> | ||||
| </ClCompile> | </ClCompile> | ||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.cpp"> | |||||
| <ExcludedFromBuild>true</ExcludedFromBuild> | |||||
| </ClCompile> | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | ||||
| <ExcludedFromBuild>true</ExcludedFromBuild> | <ExcludedFromBuild>true</ExcludedFromBuild> | ||||
| </ClCompile> | </ClCompile> | ||||
| @@ -2267,12 +2270,14 @@ | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Gain.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Gain.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.h"/> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessContext.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessContext.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorChain.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorChain.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorDuplicator.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorDuplicator.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Reverb.h"/> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_WaveShaper.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_WaveShaper.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\juce_dsp.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\juce_dsp.h"/> | ||||
| @@ -1306,6 +1306,9 @@ | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClCompile> | </ClCompile> | ||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.cpp"> | |||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | |||||
| </ClCompile> | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClCompile> | </ClCompile> | ||||
| @@ -3465,6 +3468,9 @@ | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.h"> | |||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | |||||
| </ClInclude> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| @@ -3483,6 +3489,9 @@ | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Reverb.h"> | |||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | |||||
| </ClInclude> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -100,6 +100,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -37,6 +37,7 @@ ifeq ($(CONFIG),Debug) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := DSPDemo | JUCE_TARGET_APP := DSPDemo | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | ||||
| @@ -58,6 +59,7 @@ ifeq ($(CONFIG),Release) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := DSPDemo | JUCE_TARGET_APP := DSPDemo | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | ||||
| @@ -102,7 +104,7 @@ $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) : check-pkg-config $(OBJECTS_APP) $(RESOURCES) | |||||
| -$(V_AT)mkdir -p $(JUCE_BINDIR) | -$(V_AT)mkdir -p $(JUCE_BINDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_LIBDIR) | -$(V_AT)mkdir -p $(JUCE_LIBDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_OUTDIR) | -$(V_AT)mkdir -p $(JUCE_OUTDIR) | ||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(JUCE_LDFLAGS_APP) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(JUCE_OBJDIR)/ConvolutionDemo_ecad51bd.o: ../../Source/Demos/ConvolutionDemo.cpp | $(JUCE_OBJDIR)/ConvolutionDemo_ecad51bd.o: ../../Source/Demos/ConvolutionDemo.cpp | ||||
| -$(V_AT)mkdir -p $(JUCE_OBJDIR) | -$(V_AT)mkdir -p $(JUCE_OBJDIR) | ||||
| @@ -935,6 +935,9 @@ | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | ||||
| <ExcludedFromBuild>true</ExcludedFromBuild> | <ExcludedFromBuild>true</ExcludedFromBuild> | ||||
| </ClCompile> | </ClCompile> | ||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.cpp"> | |||||
| <ExcludedFromBuild>true</ExcludedFromBuild> | |||||
| </ClCompile> | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | ||||
| <ExcludedFromBuild>true</ExcludedFromBuild> | <ExcludedFromBuild>true</ExcludedFromBuild> | ||||
| </ClCompile> | </ClCompile> | ||||
| @@ -2126,12 +2129,14 @@ | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Gain.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Gain.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.h"/> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessContext.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessContext.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorChain.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorChain.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorDuplicator.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorDuplicator.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Reverb.h"/> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_WaveShaper.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_WaveShaper.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\juce_dsp.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\juce_dsp.h"/> | ||||
| @@ -1225,6 +1225,9 @@ | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClCompile> | </ClCompile> | ||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.cpp"> | |||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | |||||
| </ClCompile> | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClCompile> | </ClCompile> | ||||
| @@ -3210,6 +3213,9 @@ | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.h"> | |||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | |||||
| </ClInclude> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| @@ -3228,6 +3234,9 @@ | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Reverb.h"> | |||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | |||||
| </ClInclude> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 1 | #define JUCE_REPORT_APP_USAGE 1 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -98,6 +98,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -18,13 +18,13 @@ include_directories( AFTER | |||||
| enable_language(ASM) | enable_language(ASM) | ||||
| IF(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| IF(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| add_definitions("-DDEBUG=1" "-D_DEBUG=1") | add_definitions("-DDEBUG=1" "-D_DEBUG=1") | ||||
| ELSEIF(JUCE_BUILD_CONFIGFURATION MATCHES "RELEASE") | |||||
| ELSEIF(JUCE_BUILD_CONFIGURATION MATCHES "RELEASE") | |||||
| add_definitions("-DNDEBUG=1") | add_definitions("-DNDEBUG=1") | ||||
| ELSE(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| ELSE(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| MESSAGE( FATAL_ERROR "No matching build-configuration found." ) | MESSAGE( FATAL_ERROR "No matching build-configuration found." ) | ||||
| ENDIF(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| ENDIF(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| add_library( ${BINARY_NAME} | add_library( ${BINARY_NAME} | ||||
| @@ -54,7 +54,7 @@ android { | |||||
| } | } | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | |||||
| arguments "-DJUCE_BUILD_CONFIGURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | |||||
| } | } | ||||
| } | } | ||||
| @@ -63,7 +63,7 @@ android { | |||||
| release_ { | release_ { | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | |||||
| arguments "-DJUCE_BUILD_CONFIGURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | |||||
| } | } | ||||
| } | } | ||||
| @@ -37,6 +37,7 @@ ifeq ($(CONFIG),Debug) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCE_UNIT_TESTS=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=3.0.0 -DJUCE_APP_VERSION_HEX=0x30000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCE_UNIT_TESTS=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=3.0.0 -DJUCE_APP_VERSION_HEX=0x30000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := JuceDemo | JUCE_TARGET_APP := JuceDemo | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | ||||
| @@ -58,6 +59,7 @@ ifeq ($(CONFIG),Release) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCE_UNIT_TESTS=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=3.0.0 -DJUCE_APP_VERSION_HEX=0x30000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCE_UNIT_TESTS=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=3.0.0 -DJUCE_APP_VERSION_HEX=0x30000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := JuceDemo | JUCE_TARGET_APP := JuceDemo | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | ||||
| @@ -136,7 +138,7 @@ $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) : check-pkg-config $(OBJECTS_APP) $(RESOURCES) | |||||
| -$(V_AT)mkdir -p $(JUCE_BINDIR) | -$(V_AT)mkdir -p $(JUCE_BINDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_LIBDIR) | -$(V_AT)mkdir -p $(JUCE_LIBDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_OUTDIR) | -$(V_AT)mkdir -p $(JUCE_OUTDIR) | ||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(JUCE_LDFLAGS_APP) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | ||||
| -$(V_AT)mkdir -p $(JUCE_OBJDIR) | -$(V_AT)mkdir -p $(JUCE_OBJDIR) | ||||
| @@ -343,7 +343,7 @@ | |||||
| INFOPLIST_FILE = Info-App.plist; | INFOPLIST_FILE = Info-App.plist; | ||||
| INFOPLIST_PREPROCESS = NO; | INFOPLIST_PREPROCESS = NO; | ||||
| INSTALL_PATH = "$(HOME)/Applications"; | INSTALL_PATH = "$(HOME)/Applications"; | ||||
| MACOSX_DEPLOYMENT_TARGET = 10.10; | |||||
| MACOSX_DEPLOYMENT_TARGET = 10.6; | |||||
| MACOSX_DEPLOYMENT_TARGET_ppc = 10.4; | MACOSX_DEPLOYMENT_TARGET_ppc = 10.4; | ||||
| OTHER_CPLUSPLUSFLAGS = "-Wall -Wshadow -Wstrict-aliasing -Wconversion -Wsign-compare -Woverloaded-virtual -Wextra-semi"; | OTHER_CPLUSPLUSFLAGS = "-Wall -Wshadow -Wstrict-aliasing -Wconversion -Wsign-compare -Woverloaded-virtual -Wextra-semi"; | ||||
| PRODUCT_BUNDLE_IDENTIFIER = com.roli.JuceDemo; | PRODUCT_BUNDLE_IDENTIFIER = com.roli.JuceDemo; | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -101,6 +101,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -37,6 +37,7 @@ ifeq ($(CONFIG),Debug) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := HelloWorld | JUCE_TARGET_APP := HelloWorld | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | ||||
| @@ -58,6 +59,7 @@ ifeq ($(CONFIG),Release) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := HelloWorld | JUCE_TARGET_APP := HelloWorld | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -Os $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -Os $(CFLAGS) | ||||
| @@ -86,7 +88,7 @@ $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) : check-pkg-config $(OBJECTS_APP) $(RESOURCES) | |||||
| -$(V_AT)mkdir -p $(JUCE_BINDIR) | -$(V_AT)mkdir -p $(JUCE_BINDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_LIBDIR) | -$(V_AT)mkdir -p $(JUCE_LIBDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_OUTDIR) | -$(V_AT)mkdir -p $(JUCE_OUTDIR) | ||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(JUCE_LDFLAGS_APP) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | ||||
| -$(V_AT)mkdir -p $(JUCE_OBJDIR) | -$(V_AT)mkdir -p $(JUCE_OBJDIR) | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -18,13 +18,13 @@ include_directories( AFTER | |||||
| enable_language(ASM) | enable_language(ASM) | ||||
| IF(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| IF(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| add_definitions("-DDEBUG=1" "-D_DEBUG=1") | add_definitions("-DDEBUG=1" "-D_DEBUG=1") | ||||
| ELSEIF(JUCE_BUILD_CONFIGFURATION MATCHES "RELEASE") | |||||
| ELSEIF(JUCE_BUILD_CONFIGURATION MATCHES "RELEASE") | |||||
| add_definitions("-DNDEBUG=1") | add_definitions("-DNDEBUG=1") | ||||
| ELSE(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| ELSE(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| MESSAGE( FATAL_ERROR "No matching build-configuration found." ) | MESSAGE( FATAL_ERROR "No matching build-configuration found." ) | ||||
| ENDIF(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| ENDIF(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| add_library( ${BINARY_NAME} | add_library( ${BINARY_NAME} | ||||
| @@ -54,7 +54,7 @@ android { | |||||
| } | } | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | |||||
| arguments "-DJUCE_BUILD_CONFIGURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | |||||
| } | } | ||||
| } | } | ||||
| @@ -63,7 +63,7 @@ android { | |||||
| release_ { | release_ { | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | |||||
| arguments "-DJUCE_BUILD_CONFIGURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | |||||
| } | } | ||||
| } | } | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 1 | #define JUCE_REPORT_APP_USAGE 1 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -100,6 +100,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -37,6 +37,7 @@ ifeq ($(CONFIG),Debug) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := MPETest | JUCE_TARGET_APP := MPETest | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | ||||
| @@ -58,6 +59,7 @@ ifeq ($(CONFIG),Release) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := MPETest | JUCE_TARGET_APP := MPETest | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | ||||
| @@ -93,7 +95,7 @@ $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) : check-pkg-config $(OBJECTS_APP) $(RESOURCES) | |||||
| -$(V_AT)mkdir -p $(JUCE_BINDIR) | -$(V_AT)mkdir -p $(JUCE_BINDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_LIBDIR) | -$(V_AT)mkdir -p $(JUCE_LIBDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_OUTDIR) | -$(V_AT)mkdir -p $(JUCE_OUTDIR) | ||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(JUCE_LDFLAGS_APP) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | ||||
| -$(V_AT)mkdir -p $(JUCE_OBJDIR) | -$(V_AT)mkdir -p $(JUCE_OBJDIR) | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -100,6 +100,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -18,13 +18,13 @@ include_directories( AFTER | |||||
| enable_language(ASM) | enable_language(ASM) | ||||
| IF(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| IF(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| add_definitions("-DDEBUG=1" "-D_DEBUG=1") | add_definitions("-DDEBUG=1" "-D_DEBUG=1") | ||||
| ELSEIF(JUCE_BUILD_CONFIGFURATION MATCHES "RELEASE") | |||||
| ELSEIF(JUCE_BUILD_CONFIGURATION MATCHES "RELEASE") | |||||
| add_definitions("-DNDEBUG=1") | add_definitions("-DNDEBUG=1") | ||||
| ELSE(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| ELSE(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| MESSAGE( FATAL_ERROR "No matching build-configuration found." ) | MESSAGE( FATAL_ERROR "No matching build-configuration found." ) | ||||
| ENDIF(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| ENDIF(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| add_library( ${BINARY_NAME} | add_library( ${BINARY_NAME} | ||||
| @@ -54,7 +54,7 @@ android { | |||||
| } | } | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | |||||
| arguments "-DJUCE_BUILD_CONFIGURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | |||||
| } | } | ||||
| } | } | ||||
| @@ -63,7 +63,7 @@ android { | |||||
| release_ { | release_ { | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | |||||
| arguments "-DJUCE_BUILD_CONFIGURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | |||||
| } | } | ||||
| } | } | ||||
| @@ -37,6 +37,7 @@ ifeq ($(CONFIG),Debug) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := MidiTest | JUCE_TARGET_APP := MidiTest | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | ||||
| @@ -58,6 +59,7 @@ ifeq ($(CONFIG),Release) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := MidiTest | JUCE_TARGET_APP := MidiTest | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | ||||
| @@ -91,7 +93,7 @@ $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) : check-pkg-config $(OBJECTS_APP) $(RESOURCES) | |||||
| -$(V_AT)mkdir -p $(JUCE_BINDIR) | -$(V_AT)mkdir -p $(JUCE_BINDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_LIBDIR) | -$(V_AT)mkdir -p $(JUCE_LIBDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_OUTDIR) | -$(V_AT)mkdir -p $(JUCE_OUTDIR) | ||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(JUCE_LDFLAGS_APP) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | ||||
| -$(V_AT)mkdir -p $(JUCE_OBJDIR) | -$(V_AT)mkdir -p $(JUCE_OBJDIR) | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -97,6 +97,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -18,13 +18,13 @@ include_directories( AFTER | |||||
| enable_language(ASM) | enable_language(ASM) | ||||
| IF(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| IF(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| add_definitions("-DJUCE_DEBUG=0" "-DDEBUG=1" "-D_DEBUG=1") | add_definitions("-DJUCE_DEBUG=0" "-DDEBUG=1" "-D_DEBUG=1") | ||||
| ELSEIF(JUCE_BUILD_CONFIGFURATION MATCHES "RELEASE") | |||||
| ELSEIF(JUCE_BUILD_CONFIGURATION MATCHES "RELEASE") | |||||
| add_definitions("-DNDEBUG=1") | add_definitions("-DNDEBUG=1") | ||||
| ELSE(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| ELSE(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| MESSAGE( FATAL_ERROR "No matching build-configuration found." ) | MESSAGE( FATAL_ERROR "No matching build-configuration found." ) | ||||
| ENDIF(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| ENDIF(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| add_library( ${BINARY_NAME} | add_library( ${BINARY_NAME} | ||||
| @@ -54,7 +54,7 @@ android { | |||||
| } | } | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-Ofast", "-DCMAKE_C_FLAGS_DEBUG=-Ofast" | |||||
| arguments "-DJUCE_BUILD_CONFIGURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-Ofast", "-DCMAKE_C_FLAGS_DEBUG=-Ofast" | |||||
| } | } | ||||
| } | } | ||||
| @@ -63,7 +63,7 @@ android { | |||||
| release_ { | release_ { | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | |||||
| arguments "-DJUCE_BUILD_CONFIGURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | |||||
| } | } | ||||
| } | } | ||||
| @@ -37,6 +37,7 @@ ifeq ($(CONFIG),Debug) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := JUCE\ Network\ Graphics\ Demo | JUCE_TARGET_APP := JUCE\ Network\ Graphics\ Demo | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | ||||
| @@ -58,6 +59,7 @@ ifeq ($(CONFIG),Release) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := JUCE\ Network\ Graphics\ Demo | JUCE_TARGET_APP := JUCE\ Network\ Graphics\ Demo | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | ||||
| @@ -94,7 +96,7 @@ $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) : check-pkg-config $(OBJECTS_APP) $(RESOURCES) | |||||
| -$(V_AT)mkdir -p $(JUCE_BINDIR) | -$(V_AT)mkdir -p $(JUCE_BINDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_LIBDIR) | -$(V_AT)mkdir -p $(JUCE_LIBDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_OUTDIR) | -$(V_AT)mkdir -p $(JUCE_OUTDIR) | ||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(JUCE_LDFLAGS_APP) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | ||||
| -$(V_AT)mkdir -p $(JUCE_OBJDIR) | -$(V_AT)mkdir -p $(JUCE_OBJDIR) | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -100,6 +100,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -37,6 +37,7 @@ ifeq ($(CONFIG),Debug) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := OSCMonitor | JUCE_TARGET_APP := OSCMonitor | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | ||||
| @@ -58,6 +59,7 @@ ifeq ($(CONFIG),Release) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := OSCMonitor | JUCE_TARGET_APP := OSCMonitor | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | ||||
| @@ -93,7 +95,7 @@ $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) : check-pkg-config $(OBJECTS_APP) $(RESOURCES) | |||||
| -$(V_AT)mkdir -p $(JUCE_BINDIR) | -$(V_AT)mkdir -p $(JUCE_BINDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_LIBDIR) | -$(V_AT)mkdir -p $(JUCE_LIBDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_OUTDIR) | -$(V_AT)mkdir -p $(JUCE_OUTDIR) | ||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(JUCE_LDFLAGS_APP) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | ||||
| -$(V_AT)mkdir -p $(JUCE_OBJDIR) | -$(V_AT)mkdir -p $(JUCE_OBJDIR) | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -100,6 +100,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -18,13 +18,13 @@ include_directories( AFTER | |||||
| enable_language(ASM) | enable_language(ASM) | ||||
| IF(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| IF(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| add_definitions("-DDEBUG=1" "-D_DEBUG=1") | add_definitions("-DDEBUG=1" "-D_DEBUG=1") | ||||
| ELSEIF(JUCE_BUILD_CONFIGFURATION MATCHES "RELEASE") | |||||
| ELSEIF(JUCE_BUILD_CONFIGURATION MATCHES "RELEASE") | |||||
| add_definitions("-DNDEBUG=1") | add_definitions("-DNDEBUG=1") | ||||
| ELSE(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| ELSE(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| MESSAGE( FATAL_ERROR "No matching build-configuration found." ) | MESSAGE( FATAL_ERROR "No matching build-configuration found." ) | ||||
| ENDIF(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| ENDIF(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| add_library( ${BINARY_NAME} | add_library( ${BINARY_NAME} | ||||
| @@ -54,7 +54,7 @@ android { | |||||
| } | } | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | |||||
| arguments "-DJUCE_BUILD_CONFIGURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | |||||
| } | } | ||||
| } | } | ||||
| @@ -63,7 +63,7 @@ android { | |||||
| release_ { | release_ { | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | |||||
| arguments "-DJUCE_BUILD_CONFIGURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | |||||
| } | } | ||||
| } | } | ||||
| @@ -37,6 +37,7 @@ ifeq ($(CONFIG),Debug) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := OSCReceiver | JUCE_TARGET_APP := OSCReceiver | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | ||||
| @@ -58,6 +59,7 @@ ifeq ($(CONFIG),Release) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := OSCReceiver | JUCE_TARGET_APP := OSCReceiver | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | ||||
| @@ -87,7 +89,7 @@ $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) : check-pkg-config $(OBJECTS_APP) $(RESOURCES) | |||||
| -$(V_AT)mkdir -p $(JUCE_BINDIR) | -$(V_AT)mkdir -p $(JUCE_BINDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_LIBDIR) | -$(V_AT)mkdir -p $(JUCE_LIBDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_OUTDIR) | -$(V_AT)mkdir -p $(JUCE_OUTDIR) | ||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(JUCE_LDFLAGS_APP) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | ||||
| -$(V_AT)mkdir -p $(JUCE_OBJDIR) | -$(V_AT)mkdir -p $(JUCE_OBJDIR) | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -18,13 +18,13 @@ include_directories( AFTER | |||||
| enable_language(ASM) | enable_language(ASM) | ||||
| IF(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| IF(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| add_definitions("-DDEBUG=1" "-D_DEBUG=1") | add_definitions("-DDEBUG=1" "-D_DEBUG=1") | ||||
| ELSEIF(JUCE_BUILD_CONFIGFURATION MATCHES "RELEASE") | |||||
| ELSEIF(JUCE_BUILD_CONFIGURATION MATCHES "RELEASE") | |||||
| add_definitions("-DNDEBUG=1") | add_definitions("-DNDEBUG=1") | ||||
| ELSE(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| ELSE(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| MESSAGE( FATAL_ERROR "No matching build-configuration found." ) | MESSAGE( FATAL_ERROR "No matching build-configuration found." ) | ||||
| ENDIF(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| ENDIF(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| add_library( ${BINARY_NAME} | add_library( ${BINARY_NAME} | ||||
| @@ -54,7 +54,7 @@ android { | |||||
| } | } | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | |||||
| arguments "-DJUCE_BUILD_CONFIGURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | |||||
| } | } | ||||
| } | } | ||||
| @@ -63,7 +63,7 @@ android { | |||||
| release_ { | release_ { | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | |||||
| arguments "-DJUCE_BUILD_CONFIGURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | |||||
| } | } | ||||
| } | } | ||||
| @@ -37,6 +37,7 @@ ifeq ($(CONFIG),Debug) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := OSCSender | JUCE_TARGET_APP := OSCSender | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | ||||
| @@ -58,6 +59,7 @@ ifeq ($(CONFIG),Release) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags freetype2 libcurl x11 xext xinerama) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := OSCSender | JUCE_TARGET_APP := OSCSender | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | ||||
| @@ -85,7 +87,7 @@ $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) : check-pkg-config $(OBJECTS_APP) $(RESOURCES) | |||||
| -$(V_AT)mkdir -p $(JUCE_BINDIR) | -$(V_AT)mkdir -p $(JUCE_BINDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_LIBDIR) | -$(V_AT)mkdir -p $(JUCE_LIBDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_OUTDIR) | -$(V_AT)mkdir -p $(JUCE_OUTDIR) | ||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(JUCE_LDFLAGS_APP) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | ||||
| -$(V_AT)mkdir -p $(JUCE_OBJDIR) | -$(V_AT)mkdir -p $(JUCE_OBJDIR) | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -99,6 +99,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -97,6 +97,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -100,6 +100,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -100,6 +100,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -98,6 +98,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -100,6 +100,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -100,6 +100,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -100,6 +100,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -18,13 +18,13 @@ include_directories( AFTER | |||||
| enable_language(ASM) | enable_language(ASM) | ||||
| IF(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| IF(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| add_definitions("-DDEBUG=1" "-D_DEBUG=1") | add_definitions("-DDEBUG=1" "-D_DEBUG=1") | ||||
| ELSEIF(JUCE_BUILD_CONFIGFURATION MATCHES "RELEASE") | |||||
| ELSEIF(JUCE_BUILD_CONFIGURATION MATCHES "RELEASE") | |||||
| add_definitions("-DNDEBUG=1") | add_definitions("-DNDEBUG=1") | ||||
| ELSE(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| ELSE(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| MESSAGE( FATAL_ERROR "No matching build-configuration found." ) | MESSAGE( FATAL_ERROR "No matching build-configuration found." ) | ||||
| ENDIF(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| ENDIF(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| add_library( ${BINARY_NAME} | add_library( ${BINARY_NAME} | ||||
| @@ -54,7 +54,7 @@ android { | |||||
| } | } | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | |||||
| arguments "-DJUCE_BUILD_CONFIGURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | |||||
| } | } | ||||
| } | } | ||||
| @@ -63,7 +63,7 @@ android { | |||||
| release_ { | release_ { | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | |||||
| arguments "-DJUCE_BUILD_CONFIGURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | |||||
| } | } | ||||
| } | } | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -98,6 +98,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -925,6 +925,9 @@ | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | ||||
| <ExcludedFromBuild>true</ExcludedFromBuild> | <ExcludedFromBuild>true</ExcludedFromBuild> | ||||
| </ClCompile> | </ClCompile> | ||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.cpp"> | |||||
| <ExcludedFromBuild>true</ExcludedFromBuild> | |||||
| </ClCompile> | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | ||||
| <ExcludedFromBuild>true</ExcludedFromBuild> | <ExcludedFromBuild>true</ExcludedFromBuild> | ||||
| </ClCompile> | </ClCompile> | ||||
| @@ -2113,12 +2116,14 @@ | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Gain.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Gain.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.h"/> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessContext.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessContext.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorChain.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorChain.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorDuplicator.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorDuplicator.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Reverb.h"/> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_WaveShaper.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_WaveShaper.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\juce_dsp.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\juce_dsp.h"/> | ||||
| @@ -1189,6 +1189,9 @@ | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClCompile> | </ClCompile> | ||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.cpp"> | |||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | |||||
| </ClCompile> | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClCompile> | </ClCompile> | ||||
| @@ -3165,6 +3168,9 @@ | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.h"> | |||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | |||||
| </ClInclude> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| @@ -3183,6 +3189,9 @@ | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Reverb.h"> | |||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | |||||
| </ClInclude> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| @@ -925,6 +925,9 @@ | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | ||||
| <ExcludedFromBuild>true</ExcludedFromBuild> | <ExcludedFromBuild>true</ExcludedFromBuild> | ||||
| </ClCompile> | </ClCompile> | ||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.cpp"> | |||||
| <ExcludedFromBuild>true</ExcludedFromBuild> | |||||
| </ClCompile> | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | ||||
| <ExcludedFromBuild>true</ExcludedFromBuild> | <ExcludedFromBuild>true</ExcludedFromBuild> | ||||
| </ClCompile> | </ClCompile> | ||||
| @@ -2113,12 +2116,14 @@ | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Gain.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Gain.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.h"/> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessContext.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessContext.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorChain.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorChain.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorDuplicator.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorDuplicator.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Reverb.h"/> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_WaveShaper.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_WaveShaper.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\juce_dsp.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\juce_dsp.h"/> | ||||
| @@ -1189,6 +1189,9 @@ | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClCompile> | </ClCompile> | ||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.cpp"> | |||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | |||||
| </ClCompile> | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClCompile> | </ClCompile> | ||||
| @@ -3165,6 +3168,9 @@ | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.h"> | |||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | |||||
| </ClInclude> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| @@ -3183,6 +3189,9 @@ | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Reverb.h"> | |||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | |||||
| </ClInclude> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -98,6 +98,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -18,13 +18,13 @@ include_directories( AFTER | |||||
| enable_language(ASM) | enable_language(ASM) | ||||
| IF(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| IF(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| add_definitions("-DDEBUG=1" "-D_DEBUG=1") | add_definitions("-DDEBUG=1" "-D_DEBUG=1") | ||||
| ELSEIF(JUCE_BUILD_CONFIGFURATION MATCHES "RELEASE") | |||||
| ELSEIF(JUCE_BUILD_CONFIGURATION MATCHES "RELEASE") | |||||
| add_definitions("-DNDEBUG=1") | add_definitions("-DNDEBUG=1") | ||||
| ELSE(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| ELSE(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| MESSAGE( FATAL_ERROR "No matching build-configuration found." ) | MESSAGE( FATAL_ERROR "No matching build-configuration found." ) | ||||
| ENDIF(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| ENDIF(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| add_library( ${BINARY_NAME} | add_library( ${BINARY_NAME} | ||||
| @@ -54,7 +54,7 @@ android { | |||||
| } | } | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | |||||
| arguments "-DJUCE_BUILD_CONFIGURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | |||||
| } | } | ||||
| } | } | ||||
| @@ -63,7 +63,7 @@ android { | |||||
| release_ { | release_ { | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | |||||
| arguments "-DJUCE_BUILD_CONFIGURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-O3", "-DCMAKE_C_FLAGS_RELEASE=-O3" | |||||
| } | } | ||||
| } | } | ||||
| @@ -43,6 +43,7 @@ ifeq ($(CONFIG),Debug) | |||||
| JUCE_TARGET_VST := JuceDemoPlugin.so | JUCE_TARGET_VST := JuceDemoPlugin.so | ||||
| JUCE_CPPFLAGS_STANDALONE_PLUGIN := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=1 | JUCE_CPPFLAGS_STANDALONE_PLUGIN := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=1 | ||||
| JUCE_LDFLAGS_STANDALONE_PLUGIN := -no-pie | |||||
| JUCE_TARGET_STANDALONE_PLUGIN := JuceDemoPlugin | JUCE_TARGET_STANDALONE_PLUGIN := JuceDemoPlugin | ||||
| JUCE_CPPFLAGS_SHARED_CODE := -DJucePlugin_Build_VST=1 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=1 -DJUCE_SHARED_CODE=1 | JUCE_CPPFLAGS_SHARED_CODE := -DJucePlugin_Build_VST=1 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=1 -DJUCE_SHARED_CODE=1 | ||||
| @@ -73,6 +74,7 @@ ifeq ($(CONFIG),Release) | |||||
| JUCE_TARGET_VST := JuceDemoPlugin.so | JUCE_TARGET_VST := JuceDemoPlugin.so | ||||
| JUCE_CPPFLAGS_STANDALONE_PLUGIN := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=1 | JUCE_CPPFLAGS_STANDALONE_PLUGIN := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=1 | ||||
| JUCE_LDFLAGS_STANDALONE_PLUGIN := -no-pie | |||||
| JUCE_TARGET_STANDALONE_PLUGIN := JuceDemoPlugin | JUCE_TARGET_STANDALONE_PLUGIN := JuceDemoPlugin | ||||
| JUCE_CPPFLAGS_SHARED_CODE := -DJucePlugin_Build_VST=1 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=1 -DJUCE_SHARED_CODE=1 | JUCE_CPPFLAGS_SHARED_CODE := -DJucePlugin_Build_VST=1 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=1 -DJUCE_SHARED_CODE=1 | ||||
| @@ -129,7 +131,7 @@ $(JUCE_OUTDIR)/$(JUCE_TARGET_STANDALONE_PLUGIN) : check-pkg-config $(OBJECTS_STA | |||||
| -$(V_AT)mkdir -p $(JUCE_BINDIR) | -$(V_AT)mkdir -p $(JUCE_BINDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_LIBDIR) | -$(V_AT)mkdir -p $(JUCE_LIBDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_OUTDIR) | -$(V_AT)mkdir -p $(JUCE_OUTDIR) | ||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_STANDALONE_PLUGIN) $(OBJECTS_STANDALONE_PLUGIN) $(JUCE_OUTDIR)/$(JUCE_TARGET_SHARED_CODE) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_STANDALONE_PLUGIN) $(OBJECTS_STANDALONE_PLUGIN) $(JUCE_OUTDIR)/$(JUCE_TARGET_SHARED_CODE) $(JUCE_LDFLAGS) $(JUCE_LDFLAGS_STANDALONE_PLUGIN) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(JUCE_OUTDIR)/$(JUCE_TARGET_SHARED_CODE) : check-pkg-config $(OBJECTS_SHARED_CODE) $(RESOURCES) | $(JUCE_OUTDIR)/$(JUCE_TARGET_SHARED_CODE) : check-pkg-config $(OBJECTS_SHARED_CODE) $(RESOURCES) | ||||
| @echo Linking "JuceDemoPlugin - Shared Code" | @echo Linking "JuceDemoPlugin - Shared Code" | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -98,6 +98,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -37,6 +37,7 @@ ifeq ($(CONFIG),Debug) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I$(HOME)/SDKs/VST_SDK/VST3_SDK -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I$(HOME)/SDKs/VST_SDK/VST3_SDK -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := Plugin\ Host | JUCE_TARGET_APP := Plugin\ Host | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | ||||
| @@ -58,6 +59,7 @@ ifeq ($(CONFIG),Release) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I$(HOME)/SDKs/VST_SDK/VST3_SDK -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama) -pthread -I$(HOME)/SDKs/VST_SDK/VST3_SDK -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := Plugin\ Host | JUCE_TARGET_APP := Plugin\ Host | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -Os $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -Os $(CFLAGS) | ||||
| @@ -98,7 +100,7 @@ $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) : check-pkg-config $(OBJECTS_APP) $(RESOURCES) | |||||
| -$(V_AT)mkdir -p $(JUCE_BINDIR) | -$(V_AT)mkdir -p $(JUCE_BINDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_LIBDIR) | -$(V_AT)mkdir -p $(JUCE_LIBDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_OUTDIR) | -$(V_AT)mkdir -p $(JUCE_OUTDIR) | ||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(JUCE_LDFLAGS_APP) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(JUCE_OBJDIR)/FilterGraph_62e9c017.o: ../../Source/FilterGraph.cpp | $(JUCE_OBJDIR)/FilterGraph_62e9c017.o: ../../Source/FilterGraph.cpp | ||||
| -$(V_AT)mkdir -p $(JUCE_OBJDIR) | -$(V_AT)mkdir -p $(JUCE_OBJDIR) | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -100,6 +100,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -18,13 +18,13 @@ include_directories( AFTER | |||||
| enable_language(ASM) | enable_language(ASM) | ||||
| IF(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| IF(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| add_definitions("-DDEBUG=1" "-D_DEBUG=1") | add_definitions("-DDEBUG=1" "-D_DEBUG=1") | ||||
| ELSEIF(JUCE_BUILD_CONFIGFURATION MATCHES "RELEASE") | |||||
| ELSEIF(JUCE_BUILD_CONFIGURATION MATCHES "RELEASE") | |||||
| add_definitions("-DNDEBUG=1") | add_definitions("-DNDEBUG=1") | ||||
| ELSE(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| ELSE(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| MESSAGE( FATAL_ERROR "No matching build-configuration found." ) | MESSAGE( FATAL_ERROR "No matching build-configuration found." ) | ||||
| ENDIF(JUCE_BUILD_CONFIGFURATION MATCHES "DEBUG") | |||||
| ENDIF(JUCE_BUILD_CONFIGURATION MATCHES "DEBUG") | |||||
| add_library( ${BINARY_NAME} | add_library( ${BINARY_NAME} | ||||
| @@ -54,7 +54,7 @@ android { | |||||
| } | } | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | |||||
| arguments "-DJUCE_BUILD_CONFIGURATION=DEBUG", "-DCMAKE_CXX_FLAGS_DEBUG=-O0", "-DCMAKE_C_FLAGS_DEBUG=-O0" | |||||
| } | } | ||||
| } | } | ||||
| @@ -66,7 +66,7 @@ android { | |||||
| } | } | ||||
| externalNativeBuild { | externalNativeBuild { | ||||
| cmake { | cmake { | ||||
| arguments "-DJUCE_BUILD_CONFIGFURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-Ofast", "-DCMAKE_C_FLAGS_RELEASE=-Ofast" | |||||
| arguments "-DJUCE_BUILD_CONFIGURATION=RELEASE", "-DCMAKE_CXX_FLAGS_RELEASE=-Ofast", "-DCMAKE_C_FLAGS_RELEASE=-Ofast" | |||||
| } | } | ||||
| } | } | ||||
| @@ -37,6 +37,7 @@ ifeq ($(CONFIG),Debug) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := AudioPerformanceTest | JUCE_TARGET_APP := AudioPerformanceTest | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -g -ggdb -O0 $(CFLAGS) | ||||
| @@ -58,6 +59,7 @@ ifeq ($(CONFIG),Release) | |||||
| JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | JUCE_CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.0 -DJUCE_APP_VERSION_HEX=0x10000 $(shell pkg-config --cflags alsa freetype2 libcurl x11 xext xinerama webkit2gtk-4.0 gtk+-x11-3.0) -pthread -I../../JuceLibraryCode -I../../../../modules $(CPPFLAGS) | ||||
| JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | JUCE_CPPFLAGS_APP := -DJucePlugin_Build_VST=0 -DJucePlugin_Build_VST3=0 -DJucePlugin_Build_AU=0 -DJucePlugin_Build_AUv3=0 -DJucePlugin_Build_RTAS=0 -DJucePlugin_Build_AAX=0 -DJucePlugin_Build_Standalone=0 | ||||
| JUCE_LDFLAGS_APP := -no-pie | |||||
| JUCE_TARGET_APP := AudioPerformanceTest | JUCE_TARGET_APP := AudioPerformanceTest | ||||
| JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | JUCE_CFLAGS += $(JUCE_CPPFLAGS) $(TARGET_ARCH) -O3 $(CFLAGS) | ||||
| @@ -90,7 +92,7 @@ $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) : check-pkg-config $(OBJECTS_APP) $(RESOURCES) | |||||
| -$(V_AT)mkdir -p $(JUCE_BINDIR) | -$(V_AT)mkdir -p $(JUCE_BINDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_LIBDIR) | -$(V_AT)mkdir -p $(JUCE_LIBDIR) | ||||
| -$(V_AT)mkdir -p $(JUCE_OUTDIR) | -$(V_AT)mkdir -p $(JUCE_OUTDIR) | ||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(V_AT)$(CXX) -o $(JUCE_OUTDIR)/$(JUCE_TARGET_APP) $(OBJECTS_APP) $(JUCE_LDFLAGS) $(JUCE_LDFLAGS_APP) $(RESOURCES) $(TARGET_ARCH) | |||||
| $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | $(JUCE_OBJDIR)/Main_90ebc5c2.o: ../../Source/Main.cpp | ||||
| -$(V_AT)mkdir -p $(JUCE_OBJDIR) | -$(V_AT)mkdir -p $(JUCE_OBJDIR) | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -97,6 +97,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -787,7 +787,7 @@ | |||||
| INFOPLIST_FILE = Info-App.plist; | INFOPLIST_FILE = Info-App.plist; | ||||
| INFOPLIST_PREPROCESS = NO; | INFOPLIST_PREPROCESS = NO; | ||||
| INSTALL_PATH = "$(HOME)/Applications"; | INSTALL_PATH = "$(HOME)/Applications"; | ||||
| MACOSX_DEPLOYMENT_TARGET = 10.9; | |||||
| MACOSX_DEPLOYMENT_TARGET = 10.11; | |||||
| MACOSX_DEPLOYMENT_TARGET_ppc = 10.4; | MACOSX_DEPLOYMENT_TARGET_ppc = 10.4; | ||||
| OTHER_CPLUSPLUSFLAGS = "-Wall -Wshadow -Wstrict-aliasing -Wconversion -Wsign-compare -Woverloaded-virtual -Wextra-semi"; | OTHER_CPLUSPLUSFLAGS = "-Wall -Wshadow -Wstrict-aliasing -Wconversion -Wsign-compare -Woverloaded-virtual -Wextra-semi"; | ||||
| PRODUCT_BUNDLE_IDENTIFIER = com.juce.theprojucer; | PRODUCT_BUNDLE_IDENTIFIER = com.juce.theprojucer; | ||||
| @@ -821,7 +821,7 @@ | |||||
| INFOPLIST_FILE = Info-App.plist; | INFOPLIST_FILE = Info-App.plist; | ||||
| INFOPLIST_PREPROCESS = NO; | INFOPLIST_PREPROCESS = NO; | ||||
| INSTALL_PATH = "$(HOME)/Applications"; | INSTALL_PATH = "$(HOME)/Applications"; | ||||
| MACOSX_DEPLOYMENT_TARGET = 10.7; | |||||
| MACOSX_DEPLOYMENT_TARGET = 10.11; | |||||
| MACOSX_DEPLOYMENT_TARGET_ppc = 10.4; | MACOSX_DEPLOYMENT_TARGET_ppc = 10.4; | ||||
| OTHER_CPLUSPLUSFLAGS = "-Wall -Wshadow -Wstrict-aliasing -Wconversion -Wsign-compare -Woverloaded-virtual -Wextra-semi"; | OTHER_CPLUSPLUSFLAGS = "-Wall -Wshadow -Wstrict-aliasing -Wconversion -Wsign-compare -Woverloaded-virtual -Wextra-semi"; | ||||
| PRODUCT_BUNDLE_IDENTIFIER = com.juce.theprojucer; | PRODUCT_BUNDLE_IDENTIFIER = com.juce.theprojucer; | ||||
| @@ -978,6 +978,9 @@ | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | ||||
| <ExcludedFromBuild>true</ExcludedFromBuild> | <ExcludedFromBuild>true</ExcludedFromBuild> | ||||
| </ClCompile> | </ClCompile> | ||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.cpp"> | |||||
| <ExcludedFromBuild>true</ExcludedFromBuild> | |||||
| </ClCompile> | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | ||||
| <ExcludedFromBuild>true</ExcludedFromBuild> | <ExcludedFromBuild>true</ExcludedFromBuild> | ||||
| </ClCompile> | </ClCompile> | ||||
| @@ -2294,12 +2297,14 @@ | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Gain.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Gain.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.h"/> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessContext.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessContext.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorChain.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorChain.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorDuplicator.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorDuplicator.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Reverb.h"/> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_WaveShaper.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_WaveShaper.h"/> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\juce_dsp.h"/> | <ClInclude Include="..\..\..\..\modules\juce_dsp\juce_dsp.h"/> | ||||
| @@ -1324,6 +1324,9 @@ | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter.cpp"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClCompile> | </ClCompile> | ||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.cpp"> | |||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | |||||
| </ClCompile> | |||||
| <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | <ClCompile Include="..\..\..\..\modules\juce_dsp\processors\juce_Oversampling.cpp"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClCompile> | </ClCompile> | ||||
| @@ -3519,6 +3522,9 @@ | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_IIRFilter_Impl.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_LadderFilter.h"> | |||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | |||||
| </ClInclude> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Oscillator.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| @@ -3537,6 +3543,9 @@ | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_ProcessorWrapper.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_Reverb.h"> | |||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | |||||
| </ClInclude> | |||||
| <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"> | <ClInclude Include="..\..\..\..\modules\juce_dsp\processors\juce_StateVariableFilter.h"> | ||||
| <Filter>Juce Modules\juce_dsp\processors</Filter> | <Filter>Juce Modules\juce_dsp\processors</Filter> | ||||
| </ClInclude> | </ClInclude> | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -105,6 +105,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -29,6 +29,7 @@ | |||||
| under the GPL v3 license. | under the GPL v3 license. | ||||
| End User License Agreement: www.juce.com/juce-5-licence | End User License Agreement: www.juce.com/juce-5-licence | ||||
| ============================================================================== | ============================================================================== | ||||
| */ | */ | ||||
| @@ -42,7 +43,6 @@ | |||||
| #define JUCE_REPORT_APP_USAGE 0 | #define JUCE_REPORT_APP_USAGE 0 | ||||
| #endif | #endif | ||||
| // END SECTION A | // END SECTION A | ||||
| #define JUCE_USE_DARK_SPLASH_SCREEN 1 | #define JUCE_USE_DARK_SPLASH_SCREEN 1 | ||||
| @@ -100,6 +100,10 @@ | |||||
| //#define JUCE_USE_WINRT_MIDI 1 | //#define JUCE_USE_WINRT_MIDI 1 | ||||
| #endif | #endif | ||||
| #ifndef JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS | |||||
| //#define JUCE_DISABLE_AUDIO_MIXING_WITH_OTHER_APPS 1 | |||||
| #endif | |||||
| //============================================================================== | //============================================================================== | ||||
| // juce_audio_formats flags: | // juce_audio_formats flags: | ||||