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.1KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. ==============================================================================
  3. Build options for juce_graphics static library
  4. ==============================================================================
  5. */
  6. #ifndef CARLA_JUCE_GRAPHICS_APPCONFIG_H_INCLUDED
  7. #define CARLA_JUCE_GRAPHICS_APPCONFIG_H_INCLUDED
  8. #include "../juce_core/AppConfig.h"
  9. #include "../juce_events/AppConfig.h"
  10. //=============================================================================
  11. /** Config: JUCE_USE_COREIMAGE_LOADER
  12. On OSX, enabling this flag means that the CoreImage codecs will be used to load
  13. PNG/JPEG/GIF files. It is enabled by default, but you may want to disable it if
  14. you'd rather use libpng, libjpeg, etc.
  15. */
  16. #define JUCE_USE_COREIMAGE_LOADER 1
  17. /** Config: JUCE_USE_DIRECTWRITE
  18. Enabling this flag means that DirectWrite will be used when available for font
  19. management and layout.
  20. */
  21. #define JUCE_USE_DIRECTWRITE 1
  22. #define JUCE_INCLUDE_PNGLIB_CODE 0
  23. #define JUCE_INCLUDE_JPEGLIB_CODE 0
  24. #define USE_COREGRAPHICS_RENDERING 1
  25. #endif // CARLA_JUCE_GRAPHICS_APPCONFIG_H_INCLUDED