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

VST3 Client: Fix defaulted preprocessor definition in manifest helper target

This commit is contained in:
reuk 2025-09-08 13:28:30 +01:00
parent aa9b593473
commit 17df2b8037
No known key found for this signature in database
4 changed files with 3 additions and 6 deletions

View file

@ -117,6 +117,7 @@ JUCE_END_IGNORE_WARNINGS_GCC_LIKE
#include <juce_audio_processors/format_types/juce_VST3Utilities.h>
#include <juce_audio_processors/utilities/juce_VST3Interface.h>
#include <juce_audio_plugin_client/juce_audio_plugin_client.h>
#include "juce_VST3ModuleInfo.h"
//==============================================================================

View file

@ -35,6 +35,7 @@
#pragma once
#include <juce_audio_plugin_client/juce_audio_plugin_client.h>
#include <juce_audio_processors/juce_audio_processors.h>
#define Component juce::Component

View file

@ -35,6 +35,7 @@
#pragma once
#include <juce_audio_plugin_client/detail/juce_IncludeModuleHeaders.h>
#include <juce_audio_plugin_client/detail/juce_CreatePluginFilter.h>
namespace juce::detail
{

View file

@ -60,10 +60,6 @@
#pragma once
#include <juce_gui_basics/juce_gui_basics.h>
#include <juce_audio_basics/juce_audio_basics.h>
#include <juce_audio_processors/juce_audio_processors.h>
/** Config: JUCE_VST3_CAN_REPLACE_VST2
Enable this if you want your VST3 plug-in to load and save VST2 compatible
@ -150,5 +146,3 @@
#ifndef JUCE_IGNORE_VST3_MISMATCHED_PARAMETER_ID_WARNING
#define JUCE_IGNORE_VST3_MISMATCHED_PARAMETER_ID_WARNING 0
#endif
#include "detail/juce_CreatePluginFilter.h"