1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-31 03:00:05 +00:00

Introjucer: more AAX support and some clean-ups.

This commit is contained in:
jules 2012-06-26 15:30:48 +01:00
parent 165bed1fbf
commit 9074f68da8
14 changed files with 86 additions and 23 deletions

View file

@ -51,6 +51,7 @@ namespace
Value getPluginAUCocoaViewClassName (Project& project) { return project.getProjectValue ("pluginAUViewClass"); }
Value getPluginAUMainType (Project& project) { return project.getProjectValue ("pluginAUMainType"); }
Value getPluginRTASCategory (Project& project) { return project.getProjectValue ("pluginRTASCategory"); }
Value getPluginAAXCategory (Project& project) { return project.getProjectValue ("pluginAAXCategory"); }
String getPluginRTASCategoryCode (Project& project)
{
@ -135,7 +136,7 @@ namespace
flags.set ("JucePlugin_AAXManufacturerCode", "JucePlugin_ManufacturerCode");
flags.set ("JucePlugin_AAXProductId", "JucePlugin_PluginCode");
flags.set ("JucePlugin_AAXPluginId", "JucePlugin_PluginCode");
flags.set ("JucePlugin_AAXCategory", "AAX_ePlugInCategory_None");
flags.set ("JucePlugin_AAXCategory", getPluginAAXCategory (project).toString());
MemoryOutputStream mem;