The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
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.

35 lines
1.3KB

  1. /*
  2. This file contains settings that you might want to explicitly apply to
  3. your Juce build.
  4. These flags enable or disable juce features - if you're linking to juce as
  5. a library, then to change them, you'd need to alter your juce_Config.h file and
  6. recompile the juce lib. But because we're using the amalgamated file, you can
  7. just include this file before including your juce_amalgamated.cpp file to
  8. have the same effect.
  9. If you leave any of these commented-out, they'll take on the default value
  10. assigned to them in juce_Config.h, so to force them on or off, just set them
  11. to an explicit 0 or 1 in here.
  12. */
  13. //#define JUCE_ONLY_BUILD_CORE_LIBRARY 1
  14. //#define JUCE_QUICKTIME 0
  15. //#define JUCE_FORCE_DEBUG 1
  16. //#define JUCE_LOG_ASSERTIONS 1
  17. //#define JUCE_ASIO 1
  18. //#define JUCE_ALSA 1
  19. //#define JUCE_QUICKTIME 1
  20. //#define JUCE_OPENGL 1
  21. //#define JUCE_USE_FLAC 1
  22. //#define JUCE_USE_OGGVORBIS 1
  23. //#define JUCE_USE_CDBURNER 1
  24. //#define JUCE_ENABLE_REPAINT_DEBUGGING 1
  25. //#define JUCE_USE_XINERAMA 1
  26. //#define JUCE_USE_XSHM 1
  27. //#define JUCE_PLUGINHOST_VST 1
  28. //#define JUCE_PLUGINHOST_AU 1
  29. //#define JUCE_CHECK_MEMORY_LEAKS 1
  30. //#define JUCE_CATCH_UNHANDLED_EXCEPTIONS 1
  31. //#define JUCE_STRINGS_ARE_UNICODE 1