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.

90 lines
3.5KB

  1. /*
  2. ==============================================================================
  3. Build options for juce_core static library
  4. ==============================================================================
  5. */
  6. #ifndef CARLA_JUCE_CORE_APPCONFIG_H_INCLUDED
  7. #define CARLA_JUCE_CORE_APPCONFIG_H_INCLUDED
  8. #include "system/juce_TargetPlatform.h"
  9. //=============================================================================
  10. /** Config: JUCE_FORCE_DEBUG
  11. Normally, JUCE_DEBUG is set to 1 or 0 based on compiler and project settings,
  12. but if you define this value, you can override this to force it to be true or false.
  13. */
  14. #if DEBUG
  15. #define JUCE_FORCE_DEBUG 1
  16. #else
  17. #define JUCE_FORCE_DEBUG 0
  18. #endif
  19. //=============================================================================
  20. /** Config: JUCE_LOG_ASSERTIONS
  21. If this flag is enabled, the the jassert and jassertfalse macros will always use Logger::writeToLog()
  22. to write a message when an assertion happens.
  23. Enabling it will also leave this turned on in release builds. When it's disabled,
  24. however, the jassert and jassertfalse macros will not be compiled in a
  25. release build.
  26. @see jassert, jassertfalse, Logger
  27. */
  28. #define JUCE_LOG_ASSERTIONS 1
  29. //=============================================================================
  30. /** Config: JUCE_CHECK_MEMORY_LEAKS
  31. Enables a memory-leak check for certain objects when the app terminates. See the LeakedObjectDetector
  32. class and the JUCE_LEAK_DETECTOR macro for more details about enabling leak checking for specific classes.
  33. */
  34. #define JUCE_CHECK_MEMORY_LEAKS 1
  35. //=============================================================================
  36. /** Config: JUCE_DONT_AUTOLINK_TO_WIN32_LIBRARIES
  37. In a Visual C++ build, this can be used to stop the required system libs being
  38. automatically added to the link stage.
  39. */
  40. #define JUCE_DONT_AUTOLINK_TO_WIN32_LIBRARIES 0
  41. /** Config: JUCE_INCLUDE_ZLIB_CODE
  42. This can be used to disable Juce's embedded 3rd-party zlib code.
  43. You might need to tweak this if you're linking to an external zlib library in your app,
  44. but for normal apps, this option should be left alone.
  45. If you disable this, you might also want to set a value for JUCE_ZLIB_INCLUDE_PATH, to
  46. specify the path where your zlib headers live.
  47. */
  48. #define JUCE_INCLUDE_ZLIB_CODE 1
  49. /* Config: JUCE_CATCH_UNHANDLED_EXCEPTIONS
  50. If enabled, this will add some exception-catching code to forward unhandled exceptions
  51. to your JUCEApplicationBase::unhandledException() callback.
  52. */
  53. #define JUCE_CATCH_UNHANDLED_EXCEPTIONS 0
  54. #define JUCE_DISABLE_JUCE_VERSION_PRINTING 1
  55. #define JUCE_MODULE_AVAILABLE_juce_audio_basics 1
  56. #define JUCE_MODULE_AVAILABLE_juce_audio_devices 1
  57. #define JUCE_MODULE_AVAILABLE_juce_audio_formats 1
  58. #define JUCE_MODULE_AVAILABLE_juce_audio_processors 1
  59. #define JUCE_MODULE_AVAILABLE_juce_audio_utils 0
  60. #define JUCE_MODULE_AVAILABLE_juce_core 1
  61. #define JUCE_MODULE_AVAILABLE_juce_cryptography 0
  62. #define JUCE_MODULE_AVAILABLE_juce_data_structures 1
  63. #define JUCE_MODULE_AVAILABLE_juce_events 1
  64. #define JUCE_MODULE_AVAILABLE_juce_graphics 1
  65. #define JUCE_MODULE_AVAILABLE_juce_gui_basics 1
  66. #define JUCE_MODULE_AVAILABLE_juce_gui_extra 0
  67. #define JUCE_MODULE_AVAILABLE_juce_opengl 0
  68. #define JUCE_MODULE_AVAILABLE_juce_video 0
  69. #endif // CARLA_JUCE_CORE_APPCONFIG_H_INCLUDED