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.

AppConfig.h 1.6KB

10 years ago
10 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. #ifndef VESTIGE_HEADER
  17. # define JUCE_PLUGINHOST_VST 1
  18. #else
  19. # define JUCE_PLUGINHOST_VST 0
  20. #endif
  21. /** Config: JUCE_PLUGINHOST_VST3
  22. Enables the VST3 audio plugin hosting classes. This requires the Steinberg VST3 SDK to be
  23. installed on your machine.
  24. @see VSTPluginFormat, VST3PluginFormat, AudioPluginFormat, AudioPluginFormatManager, JUCE_PLUGINHOST_VST, JUCE_PLUGINHOST_AU
  25. */
  26. #if defined(JUCE_WINDOWS) || defined(JUCE_MAC)
  27. # define JUCE_PLUGINHOST_VST3 1 // FIXME
  28. #else
  29. # define JUCE_PLUGINHOST_VST3 0
  30. #endif
  31. /** Config: JUCE_PLUGINHOST_AU
  32. Enables the AudioUnit plugin hosting classes. This is Mac-only, of course.
  33. @see AudioUnitPluginFormat, AudioPluginFormat, AudioPluginFormatManager, JUCE_PLUGINHOST_VST
  34. */
  35. #define JUCE_PLUGINHOST_AU 1
  36. #define JUCE_PLUGINHOST_LADSPA 1
  37. #endif // CARLA_JUCE_AUDIO_PROCESSORS_APPCONFIG_H_INCLUDED