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.

64 lines
2.5KB

  1. /*
  2. ==============================================================================
  3. This file is part of the dRowAudio JUCE module
  4. Copyright 2004-13 by dRowAudio.
  5. ------------------------------------------------------------------------------
  6. dRowAudio is provided under the terms of The MIT License (MIT):
  7. Permission is hereby granted, free of charge, to any person obtaining a copy
  8. of this software and associated documentation files (the "Software"), to deal
  9. in the Software without restriction, including without limitation the rights
  10. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  11. copies of the Software, and to permit persons to whom the Software is
  12. furnished to do so, subject to the following conditions:
  13. The above copyright notice and this permission notice shall be included in all
  14. copies or substantial portions of the Software.
  15. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  18. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  21. SOFTWARE.
  22. ==============================================================================
  23. */
  24. //=============================================================================
  25. #include <modules/juce_core/juce_core.h>
  26. /** Config: DROWAUDIO_USE_FFTREAL
  27. Enables the FFTReal library. By default this is enabled except on the Mac
  28. where the Accelerate framework is preferred. However, if you do explicity
  29. enable this setting fftreal can be used for testing purposes.
  30. */
  31. #ifndef DROWAUDIO_USE_FFTREAL
  32. #if (! JUCE_MAC)
  33. #define DROWAUDIO_USE_FFTREAL 1
  34. #endif
  35. #endif
  36. /** Config: DROWAUDIO_USE_SOUNDTOUCH
  37. Enables the SoundTouch library and the associated SoundTouch classes for
  38. independant pitch and tempo scaling. By default this is enabled.
  39. */
  40. #ifndef DROWAUDIO_USE_SOUNDTOUCH
  41. #define DROWAUDIO_USE_SOUNDTOUCH 1
  42. #endif
  43. /** Config: DROWAUDIO_USE_CURL
  44. Enables the cURL library and the associated network classes. By default
  45. this is enabled.
  46. */
  47. #ifndef DROWAUDIO_USE_CURL
  48. #define DROWAUDIO_USE_CURL 1
  49. #endif
  50. //=============================================================================
  51. #include "dRowAudio/dRowAudio.h"