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.

65 lines
2.4KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2015 - ROLI 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. #include "../jucer_Headers.h"
  18. #include "jucer_Application.h"
  19. #include "jucer_OpenDocumentManager.h"
  20. #include "../Code Editor/jucer_SourceCodeEditor.h"
  21. #include "../Utility/jucer_FilePathPropertyComponent.h"
  22. #include "../Project/jucer_TreeItemTypes.h"
  23. #include "../Utility/jucer_UTF8Component.h"
  24. #include "../Utility/jucer_SVGPathDataComponent.h"
  25. #include "../Utility/jucer_AboutWindowComponent.h"
  26. #include "../Utility/jucer_FloatingToolWindow.h"
  27. #include "../LiveBuildEngine/projucer_MessageIDs.h"
  28. #include "../LiveBuildEngine/projucer_CppHelpers.h"
  29. #include "../LiveBuildEngine/projucer_SourceCodeRange.h"
  30. #include "../LiveBuildEngine/projucer_ClassDatabase.h"
  31. #include "../LiveBuildEngine/projucer_DiagnosticMessage.h"
  32. #include "../LiveBuildEngine/projucer_CompileEngineDLL.h"
  33. #include "../LiveBuildEngine/projucer_CompileEngineClient.h"
  34. #include "../LiveBuildEngine/projucer_ActivityListComponent.h"
  35. #include "../LiveBuildEngine/projucer_BuildTabStatusComp.h"
  36. #include "../LiveBuildEngine/projucer_ComponentListComp.h"
  37. #include "../LiveBuildEngine/projucer_CompileEngineServer.h"
  38. juce_ImplementSingleton (CompileEngineDLL);
  39. struct ProjucerAppClasses
  40. {
  41. #include "../Code Editor/jucer_LiveBuildCodeEditor.h"
  42. #include "../LiveBuildEngine/projucer_ErrorListComponent.h"
  43. };
  44. #include "jucer_CommandLine.h"
  45. #include "../Project/jucer_ProjectContentComponent.cpp"
  46. #include "jucer_Application.cpp"
  47. START_JUCE_APPLICATION (ProjucerApplication)