mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-27 02:20:05 +00:00
Removed "Plugin AU SDK Path" from Project settings as it is not used anymore.
This commit is contained in:
parent
2cecf92a0e
commit
630cb459cb
2 changed files with 0 additions and 4 deletions
|
|
@ -48,7 +48,6 @@ namespace
|
|||
Value getPluginSilenceInProducesSilenceOut (Project& project) { return project.getProjectValue ("pluginSilenceInIsSilenceOut"); }
|
||||
Value getPluginEditorNeedsKeyFocus (Project& project) { return project.getProjectValue ("pluginEditorRequiresKeys"); }
|
||||
Value getPluginVSTCategory (Project& project) { return project.getProjectValue ("pluginVSTCategory"); }
|
||||
Value getPluginAUSDKLocation (Project& project) { return project.getProjectValue ("pluginAUSDKLocation"); }
|
||||
Value getPluginAUExportPrefix (Project& project) { return project.getProjectValue ("pluginAUExportPrefix"); }
|
||||
Value getPluginAUMainType (Project& project) { return project.getProjectValue ("pluginAUMainType"); }
|
||||
Value getPluginRTASCategory (Project& project) { return project.getProjectValue ("pluginRTASCategory"); }
|
||||
|
|
|
|||
|
|
@ -266,9 +266,6 @@ public:
|
|||
props.add (new BooleanPropertyComponent (getPluginEditorNeedsKeyFocus (project), "Key Focus", "Plugin editor requires keyboard focus"),
|
||||
"Enable this if your plugin needs keyboard input - some hosts can be a bit funny about keyboard focus..");
|
||||
|
||||
props.add (new TextPropertyComponent (getPluginAUSDKLocation (project), "Plugin AU SDK Path", 512, false),
|
||||
"An optional path to the Apple AudioUnit SDK's 'CoreAudio' folder. Leave this blank to use the default location.");
|
||||
|
||||
props.add (new TextPropertyComponent (getPluginAUExportPrefix (project), "Plugin AU Export Prefix", 64, false),
|
||||
"A prefix for the names of exported entry-point functions that the component exposes - typically this will be a version of your plugin's name that can be used as part of a C++ token.");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue