mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-29 02:40:05 +00:00
Small fix to audio plugin host demo; updated plugin characteristics file to allow a standalone build flag; added VST speaker arrangement fixes as suggested by Andy; added some options for ignoring hidden files to the file browser comp; minor update to the Variant class.
This commit is contained in:
parent
f0c030e330
commit
65e1eabca3
11 changed files with 129 additions and 45 deletions
|
|
@ -44,10 +44,15 @@
|
|||
//==============================================================================
|
||||
/* Plugin Formats to build */
|
||||
|
||||
#define JucePlugin_Build_VST 1
|
||||
#define JucePlugin_Build_RTAS 0
|
||||
#define JucePlugin_Build_AU 1
|
||||
// If your project is building a standalone app to run your plugin, you should
|
||||
// set the JucePlugin_Build_Standalone flag in the project's settings..
|
||||
#if ! JucePlugin_Build_Standalone
|
||||
|
||||
// You should turn on these flags to enable the different types of plugin..
|
||||
#define JucePlugin_Build_VST 1
|
||||
#define JucePlugin_Build_RTAS 0
|
||||
#define JucePlugin_Build_AU 1
|
||||
#endif
|
||||
|
||||
//==============================================================================
|
||||
/* Generic settings */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue