1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

AppConfig: Ensure AppConfig is always included in plugin wrappers

Previously, the `JUCE_APP_CONFIG_HEADER` macro wasn't being defined/included
in some of the wrapper files, which meant that there was a danger of these
files building without important JucePlugin_Build_* macros defined.
This commit is contained in:
reuk 2020-10-19 18:44:59 +01:00
parent fdf09a6dde
commit 0d96ec9baf
4 changed files with 8 additions and 1 deletions

View file

@ -22,6 +22,8 @@
==============================================================================
*/
#include <juce_core/system/juce_TargetPlatform.h>
#include <juce_core/system/juce_CompilerWarnings.h>
#include "../utility/juce_CheckSettingMacros.h"

View file

@ -23,9 +23,10 @@
==============================================================================
*/
#include <juce_core/system/juce_TargetPlatform.h>
#if JucePlugin_Build_Unity
#include <juce_core/system/juce_TargetPlatform.h>
#include "../utility/juce_IncludeModuleHeaders.h"
#include <juce_audio_processors/format_types/juce_LegacyAudioParameter.cpp>

View file

@ -23,6 +23,8 @@
==============================================================================
*/
#include <juce_core/system/juce_TargetPlatform.h>
#if JucePlugin_Build_AU
#include <juce_core/system/juce_CompilerWarnings.h>

View file

@ -23,6 +23,8 @@
==============================================================================
*/
#include <juce_core/system/juce_TargetPlatform.h>
#if JucePlugin_Build_Standalone
#if ! JUCE_MODULE_AVAILABLE_juce_audio_utils