From 2fd331fac7573f2a2db68a0fc600c2bfde610415 Mon Sep 17 00:00:00 2001 From: hogliux Date: Tue, 13 Sep 2016 11:05:49 +0100 Subject: [PATCH] Modified compile-time error to warn the user that juce_audio_devices module is also needed when building AUv3s --- .../juce_audio_plugin_client_Standalone.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 cf78781f24..6571e03e0d 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 @@ -23,7 +23,7 @@ */ #if ! JUCE_MODULE_AVAILABLE_juce_audio_utils - #error To compile AudioUnitv3 and/or Standalone plug-ins, you need to add the juce_audio_utils module! + #error To compile AudioUnitv3 and/or Standalone plug-ins, you need to add the juce_audio_utils and juce_audio_devices modules! #endif #include "Standalone/juce_StandaloneFilterApp.cpp"