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 - "Jules' Utility Class Extensions"
  4. Copyright 2004-11 by Raw Material Software Ltd.
  5. ------------------------------------------------------------------------------
  6. JUCE can be redistributed and/or modified under the terms of the GNU General
  7. Public License (Version 2), as published by the Free Software Foundation.
  8. A copy of the license is included in the JUCE distribution, or can be found
  9. online at www.gnu.org/licenses.
  10. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  11. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  13. ------------------------------------------------------------------------------
  14. To release a closed-source product which uses JUCE, commercial licenses are
  15. available: visit www.rawmaterialsoftware.com/juce for more information.
  16. ==============================================================================
  17. */
  18. #ifdef __JUCE_AUDIO_PROCESSORS_JUCEHEADER__
  19. /* When you add this cpp file to your project, you mustn't include it in a file where you've
  20. already included any other headers - just put it inside a file on its own, possibly with your config
  21. flags preceding it, but don't include anything else. That also includes avoiding any automatic prefix
  22. header files that the compiler may be using.
  23. */
  24. #error "Incorrect use of JUCE cpp file"
  25. #endif
  26. // Your project must contain an AppConfig.h file with your project-specific settings in it,
  27. // and your header search path must make it accessible to the module's files.
  28. #include "AppConfig.h"
  29. #include "../juce_core/native/juce_BasicNativeHeaders.h"
  30. #include "juce_audio_processors.h"
  31. #include "../juce_gui_extra/juce_gui_extra.h"
  32. //==============================================================================
  33. #if JUCE_MAC
  34. #if (JUCE_PLUGINHOST_VST || JUCE_PLUGINHOST_AU) \
  35. || ! (defined (MAC_OS_X_VERSION_10_6) && MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_6)
  36. #define Point CarbonDummyPointName // (workaround to avoid definition of "Point" by old Carbon headers)
  37. #define Component CarbonDummyCompName
  38. #include <Carbon/Carbon.h>
  39. #undef Point
  40. #undef Component
  41. #endif
  42. #endif
  43. //==============================================================================
  44. // START_AUTOINCLUDE format/*.cpp, processors/*.cpp, format_types/*.cpp,
  45. // format_types/*.mm, scanning/*.cpp
  46. #include "format/juce_AudioPluginFormat.cpp"
  47. #include "format/juce_AudioPluginFormatManager.cpp"
  48. #include "processors/juce_AudioProcessor.cpp"
  49. #include "processors/juce_AudioProcessorEditor.cpp"
  50. #include "processors/juce_AudioProcessorGraph.cpp"
  51. #include "processors/juce_GenericAudioProcessorEditor.cpp"
  52. #include "processors/juce_PluginDescription.cpp"
  53. #include "format_types/juce_VSTPluginFormat.cpp"
  54. #include "format_types/juce_AudioUnitPluginFormat.mm"
  55. #include "scanning/juce_KnownPluginList.cpp"
  56. #include "scanning/juce_PluginDirectoryScanner.cpp"
  57. #include "scanning/juce_PluginListComponent.cpp"
  58. // END_AUTOINCLUDE