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.

71 lines
3.2KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2013 - Raw Material Software Ltd.
  5. Permission is granted to use this software under the terms of either:
  6. a) the GPL v2 (or any later version)
  7. b) the Affero GPL v3
  8. Details of these licenses can be found at: www.gnu.org/licenses
  9. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  11. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  12. ------------------------------------------------------------------------------
  13. To release a closed-source product which uses JUCE, commercial licenses are
  14. available: visit www.juce.com for more information.
  15. ==============================================================================
  16. */
  17. #ifndef __JUCE_JUCEHEADER__
  18. #define __JUCE_JUCEHEADER__
  19. /*
  20. PLEASE NOTE! This file is just here to help transition old code to the newer
  21. modularised layout - but it will be removed at some point in the future, so
  22. you should update your projects to use the newer design as soon as possible.
  23. Now that the library has been broken up into separate modules, instead of
  24. including one giant header that includes everything, you should include the
  25. headers of the modules that you want to use. By far the easiest way to do that
  26. is with the introjucer, which will sort everything out for you and create a
  27. single header for your app which correctly includes everything you need.
  28. */
  29. #ifdef _MSC_VER
  30. #pragma message ("The juce.h file is deprecated - please include each module's header file directly, or preferably let the introjucer handle the inclusion of source code in your project.")
  31. #else
  32. #warning "The juce.h file is deprecated - please include each module's header file directly, or preferably let the introjucer handle the inclusion of source code in your project."
  33. #endif
  34. //==============================================================================
  35. #include "modules/juce_core/juce_core.h"
  36. #include "modules/juce_gui_basics/juce_gui_basics.h"
  37. #include "modules/juce_data_structures/juce_data_structures.h"
  38. #include "modules/juce_events/juce_events.h"
  39. #include "modules/juce_graphics/juce_graphics.h"
  40. #include "modules/juce_video/juce_video.h"
  41. #include "modules/juce_opengl/juce_opengl.h"
  42. #include "modules/juce_audio_basics/juce_audio_basics.h"
  43. #include "modules/juce_audio_formats/juce_audio_formats.h"
  44. #include "modules/juce_audio_processors/juce_audio_processors.h"
  45. #include "modules/juce_audio_devices/juce_audio_devices.h"
  46. #include "modules/juce_cryptography/juce_cryptography.h"
  47. #include "modules/juce_gui_extra/juce_gui_extra.h"
  48. #include "modules/juce_audio_utils/juce_audio_utils.h"
  49. //==============================================================================
  50. #if ! DONT_SET_USING_JUCE_NAMESPACE
  51. /* If you're not mixing JUCE with other libraries, then this will obviously save
  52. a lot of typing, but can be disabled by setting DONT_SET_USING_JUCE_NAMESPACE.
  53. */
  54. using namespace juce;
  55. #endif
  56. #endif // __JUCE_JUCEHEADER__