forked from qt-creator/qt-creator
Change-Id: I605c2b5c812b500c1db2bdbfab26882ee55249d2 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
// Copyright (C) 2016 Openismus GmbH.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
|
|
|
#include "makestep.h"
|
|
#include "autotoolsprojectconstants.h"
|
|
|
|
#include <projectexplorer/buildsteplist.h>
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
|
|
|
using namespace AutotoolsProjectManager::Constants;
|
|
|
|
namespace AutotoolsProjectManager::Internal {
|
|
|
|
// MakeStep
|
|
|
|
class MakeStep : public ProjectExplorer::MakeStep
|
|
{
|
|
public:
|
|
MakeStep(ProjectExplorer::BuildStepList *bsl, Utils::Id id)
|
|
: ProjectExplorer::MakeStep(bsl, id)
|
|
{
|
|
setAvailableBuildTargets({"all", "clean"});
|
|
if (bsl->id() == ProjectExplorer::Constants::BUILDSTEPS_CLEAN) {
|
|
setSelectedBuildTarget("clean");
|
|
setIgnoreReturnValue(true);
|
|
} else {
|
|
setSelectedBuildTarget("all");
|
|
}
|
|
}
|
|
};
|
|
|
|
// MakeStepFactory
|
|
|
|
MakeStepFactory::MakeStepFactory()
|
|
{
|
|
registerStep<MakeStep>(MAKE_STEP_ID);
|
|
setDisplayName(ProjectExplorer::MakeStep::defaultDisplayName());
|
|
setSupportedProjectType(AUTOTOOLS_PROJECT_ID);
|
|
}
|
|
|
|
} // AutotoolsProjectManager::Internal
|