From 6b17905940368429a6621d1a36005f7ea473fa12 Mon Sep 17 00:00:00 2001 From: ed Date: Fri, 15 Nov 2019 14:23:48 +0000 Subject: [PATCH] Added #if JucePlugin_Build_Standalone guard to juce_audio_plugin_client_Standalone.cpp --- .../juce_audio_plugin_client_Standalone.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/juce_audio_plugin_client/juce_audio_plugin_client_Standalone.cpp b/modules/juce_audio_plugin_client/juce_audio_plugin_client_Standalone.cpp index bd8ad92284..19fa722a55 100644 --- a/modules/juce_audio_plugin_client/juce_audio_plugin_client_Standalone.cpp +++ b/modules/juce_audio_plugin_client/juce_audio_plugin_client_Standalone.cpp @@ -24,6 +24,8 @@ ============================================================================== */ +#if JucePlugin_Build_Standalone + #if ! JUCE_MODULE_AVAILABLE_juce_audio_utils #error To compile AudioUnitv3 and/or Standalone plug-ins, you need to add the juce_audio_utils and juce_audio_devices modules! #endif @@ -42,3 +44,5 @@ #endif JUCE_MAIN_FUNCTION_DEFINITION + +#endif