AutoTools: Simplify build step implementations

... and make it usable remotely.

Change-Id: Ib19b661ba5cbb7b8a585c0b130dd672605ff0506
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
hjk
2023-01-17 15:51:29 +01:00
parent d995b650ab
commit 77e7f0e314
4 changed files with 23 additions and 50 deletions

View File

@@ -7,8 +7,6 @@
#include <projectexplorer/buildsteplist.h>
#include <projectexplorer/projectexplorerconstants.h>
using namespace AutotoolsProjectManager::Constants;
namespace AutotoolsProjectManager::Internal {
// MakeStep
@@ -33,9 +31,9 @@ public:
MakeStepFactory::MakeStepFactory()
{
registerStep<MakeStep>(MAKE_STEP_ID);
registerStep<MakeStep>(Constants::MAKE_STEP_ID);
setDisplayName(ProjectExplorer::MakeStep::defaultDisplayName());
setSupportedProjectType(AUTOTOOLS_PROJECT_ID);
setSupportedProjectType(Constants::AUTOTOOLS_PROJECT_ID);
}
} // AutotoolsProjectManager::Internal