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.

70 lines
2.6KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2017 - ROLI Ltd.
  5. JUCE is an open source library subject to commercial or open-source
  6. licensing.
  7. By using JUCE, you agree to the terms of both the JUCE 5 End-User License
  8. Agreement and JUCE 5 Privacy Policy (both updated and effective as of the
  9. 27th April 2017).
  10. End User License Agreement: www.juce.com/juce-5-licence
  11. Privacy Policy: www.juce.com/juce-5-privacy-policy
  12. Or: You may also use this code under the terms of the GPL v3 (see
  13. www.gnu.org/licenses).
  14. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  15. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  16. DISCLAIMED.
  17. ==============================================================================
  18. */
  19. #include "jucer_Headers.h"
  20. #include "jucer_Application.h"
  21. #include "../CodeEditor/jucer_OpenDocumentManager.h"
  22. #include "../CodeEditor/jucer_SourceCodeEditor.h"
  23. #include "../Utility/UI/PropertyComponents/jucer_FilePathPropertyComponent.h"
  24. #include "../Project/UI/Sidebar/jucer_TreeItemTypes.h"
  25. #include "Windows/jucer_UTF8WindowComponent.h"
  26. #include "Windows/jucer_SVGPathDataWindowComponent.h"
  27. #include "Windows/jucer_AboutWindowComponent.h"
  28. #include "Windows/jucer_ApplicationUsageDataWindowComponent.h"
  29. #include "Windows/jucer_EditorColourSchemeWindowComponent.h"
  30. #include "Windows/jucer_GlobalSearchPathsWindowComponent.h"
  31. #include "Windows/jucer_FloatingToolWindow.h"
  32. #include "../LiveBuildEngine/jucer_MessageIDs.h"
  33. #include "../LiveBuildEngine/jucer_CppHelpers.h"
  34. #include "../LiveBuildEngine/jucer_SourceCodeRange.h"
  35. #include "../LiveBuildEngine/jucer_ClassDatabase.h"
  36. #include "../LiveBuildEngine/jucer_DiagnosticMessage.h"
  37. #include "../LiveBuildEngine/jucer_CompileEngineDLL.h"
  38. #include "../LiveBuildEngine/jucer_CompileEngineClient.h"
  39. #include "../LiveBuildEngine/UI/jucer_ActivityListComponent.h"
  40. #include "../LiveBuildEngine/UI/jucer_BuildTabStatusComponent.h"
  41. #include "../LiveBuildEngine/UI/jucer_ComponentListComponent.h"
  42. #include "../LiveBuildEngine/jucer_CompileEngineServer.h"
  43. juce_ImplementSingleton (CompileEngineDLL);
  44. struct ProjucerAppClasses
  45. {
  46. #include "../CodeEditor/jucer_LiveBuildCodeEditor.h"
  47. #include "../LiveBuildEngine/UI/jucer_ErrorListComponent.h"
  48. };
  49. #include "jucer_CommandLine.h"
  50. #include "../Project/UI/jucer_ProjectContentComponent.cpp"
  51. #include "jucer_Application.cpp"
  52. START_JUCE_APPLICATION (ProjucerApplication)