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.

99 lines
3.7KB

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