blob: ca91a8851ca02636c63245c42b3f7d3a36cbb997 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
// Copyright (C) 2016 Openismus GmbH.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "autogenstep.h"
#include "autoreconfstep.h"
#include "autotoolsbuildconfiguration.h"
#include "configurestep.h"
#include "makestep.h"
#include <extensionsystem/iplugin.h>
namespace AutotoolsProjectManager::Internal {
/**
* @brief Implementation of the ExtensionsSystem::IPlugin interface.
*
* The plugin creates the following components:
*
* - AutotoolsManager: Will manage the new autotools project and
* tell QtCreator for which MIME types the autotools project should
* be instantiated.
*
* - MakeStepFactory: This factory is used to create make steps.
*
* - AutogenStepFactory: This factory is used to create autogen steps.
*
* - AutoreconfStepFactory: This factory is used to create autoreconf
* steps.
*
* - ConfigureStepFactory: This factory is used to create configure steps.
*
* - MakefileEditorFactory: Provides a specialized editor with automatic
* syntax highlighting for Makefile.am files.
*
* - AutotoolsBuildConfigurationFactory: Creates build configurations that
* contain the steps (make, autogen, autoreconf or configure) that will
* be executed in the build process)
*/
class AutotoolsProjectPlugin final : public ExtensionSystem::IPlugin
{
Q_OBJECT
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "AutotoolsProjectManager.json")
void initialize() final
{
setupAutotoolsProject();
setupAutogenStep();
setupConfigureStep();
setupAutoreconfStep();
setupAutotoolsMakeStep();
}
};
} // AutotoolsProjectManager::Internal
#include "autotoolsprojectplugin.moc"
|