Skip to content

Commit

Permalink
More JUCE tweaks for JUCE_AUDIOPROCESSOR_NO_GUI
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Nov 26, 2023
1 parent a373427 commit 8ccc290
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,10 @@ void AutoResizingNSViewComponentWithParent::timerCallback()
#include "format_types/juce_VSTPluginFormat.cpp"
#include "format_types/juce_VST3PluginFormat.cpp"
#include "format_types/juce_AudioUnitPluginFormat.mm"
#include "scanning/juce_KnownPluginList.cpp"
#include "scanning/juce_PluginDirectoryScanner.cpp"
#include "scanning/juce_PluginListComponent.cpp"
#if ! JUCE_AUDIOPROCESSOR_NO_GUI
#include "scanning/juce_KnownPluginList.cpp"
#include "scanning/juce_PluginDirectoryScanner.cpp"
#include "scanning/juce_PluginListComponent.cpp"
#endif
#include "utilities/juce_AudioProcessorParameters.cpp"
#include "utilities/juce_AudioProcessorValueTreeState.cpp"
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,7 @@ void AudioProcessorValueTreeState::timerCallback()
AudioProcessorValueTreeState::Listener::Listener() {}
AudioProcessorValueTreeState::Listener::~Listener() {}

#if ! JUCE_AUDIOPROCESSOR_NO_GUI
//==============================================================================
struct AttachedControlBase : public AudioProcessorValueTreeState::Listener,
public AsyncUpdater
Expand Down Expand Up @@ -572,5 +573,6 @@ AudioProcessorValueTreeState::ButtonAttachment::ButtonAttachment (AudioProcessor
}

AudioProcessorValueTreeState::ButtonAttachment::~ButtonAttachment() {}
#endif

} // namespace juce

0 comments on commit 8ccc290

Please sign in to comment.