Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.1KB

  1. /*
  2. ==============================================================================
  3. Build options for juce_audio_processors static library
  4. ==============================================================================
  5. */
  6. #ifndef CARLA_JUCE_AUDIO_PROCESSORS_APPCONFIG_H_INCLUDED
  7. #define CARLA_JUCE_AUDIO_PROCESSORS_APPCONFIG_H_INCLUDED
  8. #include "../juce_gui_basics/AppConfig.h"
  9. #include "../juce_audio_basics/AppConfig.h"
  10. //=============================================================================
  11. /** Config: JUCE_PLUGINHOST_VST
  12. Enables the VST audio plugin hosting classes. This requires the Steinberg VST SDK to be
  13. installed on your machine.
  14. @see VSTPluginFormat, AudioPluginFormat, AudioPluginFormatManager, JUCE_PLUGINHOST_AU
  15. */
  16. #define JUCE_PLUGINHOST_VST 1
  17. /** Config: JUCE_PLUGINHOST_AU
  18. Enables the AudioUnit plugin hosting classes. This is Mac-only, of course.
  19. @see AudioUnitPluginFormat, AudioPluginFormat, AudioPluginFormatManager, JUCE_PLUGINHOST_VST
  20. */
  21. #define JUCE_PLUGINHOST_AU 1
  22. #endif // CARLA_JUCE_AUDIO_PROCESSORS_APPCONFIG_H_INCLUDED