2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2009-03-10 14:20:07 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2009-03-10 14:20:07 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2009-03-10 14:20:07 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2009-03-10 14:20:07 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2010-12-17 16:01:08 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2009-03-10 14:20:07 +01:00
|
|
|
|
2009-03-18 13:33:00 +01:00
|
|
|
#include "genericmakestep.h"
|
2009-03-10 14:20:07 +01:00
|
|
|
#include "genericprojectconstants.h"
|
|
|
|
|
#include "genericproject.h"
|
2009-03-18 15:58:36 +01:00
|
|
|
#include "ui_genericmakestep.h"
|
2009-11-25 18:50:20 +01:00
|
|
|
#include "genericbuildconfiguration.h"
|
2009-03-10 14:20:07 +01:00
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
#include <projectexplorer/buildsteplist.h>
|
2009-12-09 13:54:46 +01:00
|
|
|
#include <projectexplorer/gnumakeparser.h>
|
2012-09-03 18:31:44 +02:00
|
|
|
#include <projectexplorer/kitinformation.h>
|
2012-04-24 15:49:09 +02:00
|
|
|
#include <projectexplorer/projectexplorer.h>
|
2011-11-24 12:42:52 +01:00
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
2017-03-15 13:40:21 +01:00
|
|
|
#include <projectexplorer/target.h>
|
2012-04-24 15:49:09 +02:00
|
|
|
#include <projectexplorer/toolchain.h>
|
2017-03-15 13:40:21 +01:00
|
|
|
|
2012-09-26 17:53:25 +02:00
|
|
|
#include <qtsupport/qtkitinformation.h>
|
|
|
|
|
#include <qtsupport/qtparser.h>
|
2017-03-15 13:40:21 +01:00
|
|
|
|
2010-11-08 19:54:19 +01:00
|
|
|
#include <utils/stringutils.h>
|
2010-01-07 18:17:24 +01:00
|
|
|
#include <utils/qtcassert.h>
|
2010-10-19 11:14:03 +02:00
|
|
|
#include <utils/qtcprocess.h>
|
2009-03-18 13:33:00 +01:00
|
|
|
|
2013-09-09 14:20:39 +02:00
|
|
|
#include <QDir>
|
|
|
|
|
|
2012-08-14 15:37:38 +02:00
|
|
|
using namespace Core;
|
|
|
|
|
using namespace ProjectExplorer;
|
2009-03-10 14:20:07 +01:00
|
|
|
|
2012-08-14 15:37:38 +02:00
|
|
|
namespace GenericProjectManager {
|
|
|
|
|
namespace Internal {
|
2009-03-10 14:20:07 +01:00
|
|
|
|
2012-08-14 15:37:38 +02:00
|
|
|
const char GENERIC_MS_ID[] = "GenericProjectManager.GenericMakeStep";
|
|
|
|
|
const char GENERIC_MS_DISPLAY_NAME[] = QT_TRANSLATE_NOOP("GenericProjectManager::Internal::GenericMakeStep",
|
|
|
|
|
"Make");
|
2010-01-14 17:41:29 +01:00
|
|
|
|
2012-08-14 15:37:38 +02:00
|
|
|
const char BUILD_TARGETS_KEY[] = "GenericProjectManager.GenericMakeStep.BuildTargets";
|
|
|
|
|
const char MAKE_ARGUMENTS_KEY[] = "GenericProjectManager.GenericMakeStep.MakeArguments";
|
|
|
|
|
const char MAKE_COMMAND_KEY[] = "GenericProjectManager.GenericMakeStep.MakeCommand";
|
|
|
|
|
const char CLEAN_KEY[] = "GenericProjectManager.GenericMakeStep.Clean";
|
2010-01-14 17:41:29 +01:00
|
|
|
|
2012-08-14 15:37:38 +02:00
|
|
|
GenericMakeStep::GenericMakeStep(BuildStepList *parent) :
|
2016-02-04 13:08:13 +01:00
|
|
|
AbstractProcessStep(parent, Id(GENERIC_MS_ID))
|
2010-01-14 17:41:29 +01:00
|
|
|
{
|
|
|
|
|
ctor();
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-14 15:37:38 +02:00
|
|
|
GenericMakeStep::GenericMakeStep(BuildStepList *parent, const Id id) :
|
2016-02-04 13:08:13 +01:00
|
|
|
AbstractProcessStep(parent, id)
|
2010-01-14 17:41:29 +01:00
|
|
|
{
|
|
|
|
|
ctor();
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-14 15:37:38 +02:00
|
|
|
GenericMakeStep::GenericMakeStep(BuildStepList *parent, GenericMakeStep *bs) :
|
2010-07-16 14:00:41 +02:00
|
|
|
AbstractProcessStep(parent, bs),
|
2010-01-14 17:41:29 +01:00
|
|
|
m_buildTargets(bs->m_buildTargets),
|
|
|
|
|
m_makeArguments(bs->m_makeArguments),
|
2011-11-08 19:28:05 +01:00
|
|
|
m_makeCommand(bs->m_makeCommand),
|
|
|
|
|
m_clean(bs->m_clean)
|
2009-03-10 14:20:07 +01:00
|
|
|
{
|
2010-01-14 17:41:29 +01:00
|
|
|
ctor();
|
2009-03-10 14:20:07 +01:00
|
|
|
}
|
|
|
|
|
|
2010-01-14 17:41:29 +01:00
|
|
|
void GenericMakeStep::ctor()
|
2009-11-19 17:45:43 +01:00
|
|
|
{
|
2010-08-19 12:26:21 +02:00
|
|
|
setDefaultDisplayName(QCoreApplication::translate("GenericProjectManager::Internal::GenericMakeStep",
|
|
|
|
|
GENERIC_MS_DISPLAY_NAME));
|
2009-11-19 17:45:43 +01:00
|
|
|
}
|
|
|
|
|
|
2015-11-13 12:19:35 +01:00
|
|
|
bool GenericMakeStep::init(QList<const BuildStep *> &earlierSteps)
|
2009-03-10 14:20:07 +01:00
|
|
|
{
|
2012-11-01 18:23:02 +01:00
|
|
|
BuildConfiguration *bc = buildConfiguration();
|
2012-03-28 13:17:34 +02:00
|
|
|
if (!bc)
|
2012-11-01 18:23:02 +01:00
|
|
|
bc = target()->activeBuildConfiguration();
|
2014-06-20 14:32:40 +02:00
|
|
|
if (!bc)
|
|
|
|
|
emit addTask(Task::buildConfigurationMissingTask());
|
2009-03-10 14:20:07 +01:00
|
|
|
|
2016-12-16 00:43:14 +01:00
|
|
|
ToolChain *tc = ToolChainKitInformation::toolChain(target()->kit(), ProjectExplorer::Constants::CXX_LANGUAGE_ID);
|
2014-06-20 14:32:40 +02:00
|
|
|
if (!tc)
|
|
|
|
|
emit addTask(Task::compilerMissingTask());
|
|
|
|
|
|
|
|
|
|
if (!bc || !tc) {
|
|
|
|
|
emitFaultyConfigurationMessage();
|
2014-04-03 17:02:21 +02:00
|
|
|
return false;
|
2012-09-06 13:13:12 +02:00
|
|
|
}
|
|
|
|
|
|
2012-08-14 15:37:38 +02:00
|
|
|
ProcessParameters *pp = processParameters();
|
2010-11-12 17:23:55 +01:00
|
|
|
pp->setMacroExpander(bc->macroExpander());
|
2013-08-16 17:45:16 +02:00
|
|
|
pp->setWorkingDirectory(bc->buildDirectory().toString());
|
2012-11-21 12:04:39 +01:00
|
|
|
Utils::Environment env = bc->environment();
|
2016-04-07 13:06:01 +02:00
|
|
|
Utils::Environment::setupEnglishOutput(&env);
|
2012-11-21 12:04:39 +01:00
|
|
|
pp->setEnvironment(env);
|
2012-09-11 15:59:17 +02:00
|
|
|
pp->setCommand(makeCommand(bc->environment()));
|
2010-11-12 17:23:55 +01:00
|
|
|
pp->setArguments(allArguments());
|
2012-11-28 15:29:55 +01:00
|
|
|
pp->resolveAll();
|
2010-11-12 17:23:55 +01:00
|
|
|
|
2011-11-08 19:28:05 +01:00
|
|
|
// If we are cleaning, then make can fail with an error code, but that doesn't mean
|
|
|
|
|
// we should stop the clean queue
|
|
|
|
|
// That is mostly so that rebuild works on an already clean project
|
|
|
|
|
setIgnoreReturnValue(m_clean);
|
|
|
|
|
|
2012-08-14 15:37:38 +02:00
|
|
|
setOutputParser(new GnuMakeParser());
|
2012-11-02 12:45:09 +01:00
|
|
|
IOutputParser *parser = target()->kit()->createOutputParser();
|
|
|
|
|
if (parser)
|
|
|
|
|
appendOutputParser(parser);
|
2010-12-06 12:18:38 +01:00
|
|
|
outputParser()->setWorkingDirectory(pp->effectiveWorkingDirectory());
|
2009-12-09 13:54:46 +01:00
|
|
|
|
2015-11-13 12:19:35 +01:00
|
|
|
return AbstractProcessStep::init(earlierSteps);
|
2009-08-06 18:31:46 +02:00
|
|
|
}
|
|
|
|
|
|
2011-11-08 19:28:05 +01:00
|
|
|
void GenericMakeStep::setClean(bool clean)
|
|
|
|
|
{
|
|
|
|
|
m_clean = clean;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool GenericMakeStep::isClean() const
|
|
|
|
|
{
|
|
|
|
|
return m_clean;
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-14 17:41:29 +01:00
|
|
|
QVariantMap GenericMakeStep::toMap() const
|
2009-10-15 19:06:51 +02:00
|
|
|
{
|
2010-01-14 17:41:29 +01:00
|
|
|
QVariantMap map(AbstractProcessStep::toMap());
|
|
|
|
|
|
2016-12-25 17:59:17 +01:00
|
|
|
map.insert(BUILD_TARGETS_KEY, m_buildTargets);
|
|
|
|
|
map.insert(MAKE_ARGUMENTS_KEY, m_makeArguments);
|
|
|
|
|
map.insert(MAKE_COMMAND_KEY, m_makeCommand);
|
|
|
|
|
map.insert(CLEAN_KEY, m_clean);
|
2010-01-14 17:41:29 +01:00
|
|
|
return map;
|
2009-10-15 19:06:51 +02:00
|
|
|
}
|
|
|
|
|
|
2010-01-14 17:41:29 +01:00
|
|
|
bool GenericMakeStep::fromMap(const QVariantMap &map)
|
2009-10-15 19:06:51 +02:00
|
|
|
{
|
2016-12-25 17:59:17 +01:00
|
|
|
m_buildTargets = map.value(BUILD_TARGETS_KEY).toStringList();
|
|
|
|
|
m_makeArguments = map.value(MAKE_ARGUMENTS_KEY).toString();
|
|
|
|
|
m_makeCommand = map.value(MAKE_COMMAND_KEY).toString();
|
|
|
|
|
m_clean = map.value(CLEAN_KEY).toBool();
|
2010-01-14 17:41:29 +01:00
|
|
|
|
|
|
|
|
return BuildStep::fromMap(map);
|
2009-10-15 19:06:51 +02:00
|
|
|
}
|
|
|
|
|
|
2010-11-12 17:23:55 +01:00
|
|
|
QString GenericMakeStep::allArguments() const
|
2009-08-06 18:31:46 +02:00
|
|
|
{
|
2010-11-12 17:23:55 +01:00
|
|
|
QString args = m_makeArguments;
|
|
|
|
|
Utils::QtcProcess::addArgs(&args, m_buildTargets);
|
|
|
|
|
return args;
|
2009-08-06 18:31:46 +02:00
|
|
|
}
|
2009-03-18 15:58:36 +01:00
|
|
|
|
2012-09-11 15:59:17 +02:00
|
|
|
QString GenericMakeStep::makeCommand(const Utils::Environment &environment) const
|
2009-08-06 18:31:46 +02:00
|
|
|
{
|
2009-10-27 14:16:28 +01:00
|
|
|
QString command = m_makeCommand;
|
2009-08-06 18:31:46 +02:00
|
|
|
if (command.isEmpty()) {
|
2016-12-16 00:43:14 +01:00
|
|
|
ToolChain *tc = ToolChainKitInformation::toolChain(target()->kit(), ProjectExplorer::Constants::CXX_LANGUAGE_ID);
|
2012-04-24 15:49:09 +02:00
|
|
|
if (tc)
|
2012-09-11 15:59:17 +02:00
|
|
|
command = tc->makeCommand(environment);
|
2009-08-06 18:31:46 +02:00
|
|
|
else
|
2016-12-25 17:59:17 +01:00
|
|
|
command = "make";
|
2009-08-06 18:31:46 +02:00
|
|
|
}
|
|
|
|
|
return command;
|
2009-03-10 14:20:07 +01:00
|
|
|
}
|
|
|
|
|
|
2009-03-18 13:33:00 +01:00
|
|
|
void GenericMakeStep::run(QFutureInterface<bool> &fi)
|
2009-03-10 14:20:07 +01:00
|
|
|
{
|
|
|
|
|
AbstractProcessStep::run(fi);
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-14 15:37:38 +02:00
|
|
|
BuildStepConfigWidget *GenericMakeStep::createConfigWidget()
|
2009-03-10 14:20:07 +01:00
|
|
|
{
|
2009-03-18 13:33:00 +01:00
|
|
|
return new GenericMakeStepConfigWidget(this);
|
2009-03-10 14:20:07 +01:00
|
|
|
}
|
|
|
|
|
|
2009-03-18 13:33:00 +01:00
|
|
|
bool GenericMakeStep::immutable() const
|
2009-03-10 14:20:07 +01:00
|
|
|
{
|
2010-02-25 14:23:11 +01:00
|
|
|
return false;
|
2009-03-10 14:20:07 +01:00
|
|
|
}
|
|
|
|
|
|
2009-10-27 14:16:28 +01:00
|
|
|
bool GenericMakeStep::buildsTarget(const QString &target) const
|
2009-03-10 14:20:07 +01:00
|
|
|
{
|
2009-10-27 14:16:28 +01:00
|
|
|
return m_buildTargets.contains(target);
|
2009-03-10 14:20:07 +01:00
|
|
|
}
|
|
|
|
|
|
2009-10-27 14:16:28 +01:00
|
|
|
void GenericMakeStep::setBuildTarget(const QString &target, bool on)
|
2009-03-10 14:20:07 +01:00
|
|
|
{
|
2009-10-27 14:16:28 +01:00
|
|
|
QStringList old = m_buildTargets;
|
2009-03-10 14:20:07 +01:00
|
|
|
if (on && !old.contains(target))
|
2009-10-15 19:06:51 +02:00
|
|
|
old << target;
|
2012-11-28 20:44:03 +02:00
|
|
|
else if (!on && old.contains(target))
|
2009-10-27 16:14:18 +01:00
|
|
|
old.removeOne(target);
|
2009-10-15 19:06:51 +02:00
|
|
|
|
2009-10-27 14:16:28 +01:00
|
|
|
m_buildTargets = old;
|
2009-03-10 14:20:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//
|
2009-03-18 13:33:00 +01:00
|
|
|
// GenericMakeStepConfigWidget
|
2009-03-10 14:20:07 +01:00
|
|
|
//
|
2009-03-18 13:33:00 +01:00
|
|
|
|
2016-02-04 13:08:13 +01:00
|
|
|
GenericMakeStepConfigWidget::GenericMakeStepConfigWidget(GenericMakeStep *makeStep) :
|
|
|
|
|
m_makeStep(makeStep)
|
2009-03-10 14:20:07 +01:00
|
|
|
{
|
2009-03-18 15:58:36 +01:00
|
|
|
m_ui = new Ui::GenericMakeStep;
|
|
|
|
|
m_ui->setupUi(this);
|
2009-03-10 14:20:07 +01:00
|
|
|
|
2016-12-25 17:59:17 +01:00
|
|
|
const auto pro = static_cast<GenericProject *>(m_makeStep->target()->project());
|
|
|
|
|
const auto buildTargets = pro->buildTargets();
|
|
|
|
|
for (const QString &target : buildTargets) {
|
|
|
|
|
auto item = new QListWidgetItem(target, m_ui->targetsList);
|
2009-03-10 14:20:07 +01:00
|
|
|
item->setFlags(item->flags() | Qt::ItemIsUserCheckable);
|
2011-05-30 13:30:10 +02:00
|
|
|
item->setCheckState(m_makeStep->buildsTarget(item->text()) ? Qt::Checked : Qt::Unchecked);
|
2009-03-10 14:20:07 +01:00
|
|
|
}
|
|
|
|
|
|
2011-05-30 13:30:10 +02:00
|
|
|
m_ui->makeLineEdit->setText(m_makeStep->m_makeCommand);
|
|
|
|
|
m_ui->makeArgumentsLineEdit->setText(m_makeStep->m_makeArguments);
|
|
|
|
|
updateMakeOverrrideLabel();
|
|
|
|
|
updateDetails();
|
|
|
|
|
|
2015-01-30 10:19:13 +01:00
|
|
|
connect(m_ui->targetsList, &QListWidget::itemChanged,
|
|
|
|
|
this, &GenericMakeStepConfigWidget::itemChanged);
|
|
|
|
|
connect(m_ui->makeLineEdit, &QLineEdit::textEdited,
|
|
|
|
|
this, &GenericMakeStepConfigWidget::makeLineEditTextEdited);
|
|
|
|
|
connect(m_ui->makeArgumentsLineEdit, &QLineEdit::textEdited,
|
|
|
|
|
this, &GenericMakeStepConfigWidget::makeArgumentsLineEditTextEdited);
|
2009-08-12 17:02:28 +02:00
|
|
|
|
2016-06-28 23:06:39 +03:00
|
|
|
connect(ProjectExplorerPlugin::instance(), &ProjectExplorerPlugin::settingsChanged,
|
|
|
|
|
this, &GenericMakeStepConfigWidget::updateMakeOverrrideLabel);
|
|
|
|
|
connect(ProjectExplorerPlugin::instance(), &ProjectExplorerPlugin::settingsChanged,
|
|
|
|
|
this, &GenericMakeStepConfigWidget::updateDetails);
|
2012-05-03 16:07:58 +02:00
|
|
|
|
2016-06-28 23:06:39 +03:00
|
|
|
connect(m_makeStep->target(), &Target::kitChanged,
|
|
|
|
|
this, &GenericMakeStepConfigWidget::updateMakeOverrrideLabel);
|
2012-09-11 15:59:17 +02:00
|
|
|
|
2015-01-30 10:19:13 +01:00
|
|
|
connect(pro, &GenericProject::environmentChanged,
|
|
|
|
|
this, &GenericMakeStepConfigWidget::updateMakeOverrrideLabel);
|
|
|
|
|
connect(pro, &GenericProject::environmentChanged,
|
|
|
|
|
this, &GenericMakeStepConfigWidget::updateDetails);
|
2009-03-10 14:20:07 +01:00
|
|
|
}
|
|
|
|
|
|
2012-07-13 14:26:50 +02:00
|
|
|
GenericMakeStepConfigWidget::~GenericMakeStepConfigWidget()
|
|
|
|
|
{
|
|
|
|
|
delete m_ui;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-18 13:33:00 +01:00
|
|
|
QString GenericMakeStepConfigWidget::displayName() const
|
2009-03-10 14:20:07 +01:00
|
|
|
{
|
2010-01-14 17:41:29 +01:00
|
|
|
return tr("Make", "GenericMakestep display name.");
|
2009-03-10 14:20:07 +01:00
|
|
|
}
|
|
|
|
|
|
2009-08-12 17:02:28 +02:00
|
|
|
void GenericMakeStepConfigWidget::updateMakeOverrrideLabel()
|
|
|
|
|
{
|
2012-11-01 18:23:02 +01:00
|
|
|
BuildConfiguration *bc = m_makeStep->buildConfiguration();
|
2012-09-11 15:59:17 +02:00
|
|
|
if (!bc)
|
2012-11-01 18:23:02 +01:00
|
|
|
bc = m_makeStep->target()->activeBuildConfiguration();
|
2012-09-11 15:59:17 +02:00
|
|
|
|
2013-09-09 14:20:39 +02:00
|
|
|
m_ui->makeLabel->setText(tr("Override %1:").arg(QDir::toNativeSeparators(m_makeStep->makeCommand(bc->environment()))));
|
2009-08-12 17:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
2009-08-06 18:31:46 +02:00
|
|
|
void GenericMakeStepConfigWidget::updateDetails()
|
|
|
|
|
{
|
2012-11-01 18:23:02 +01:00
|
|
|
BuildConfiguration *bc = m_makeStep->buildConfiguration();
|
2012-03-28 13:17:34 +02:00
|
|
|
if (!bc)
|
2012-11-01 18:23:02 +01:00
|
|
|
bc = m_makeStep->target()->activeBuildConfiguration();
|
2010-11-12 17:23:55 +01:00
|
|
|
|
2012-08-14 15:37:38 +02:00
|
|
|
ProcessParameters param;
|
2010-11-12 17:23:55 +01:00
|
|
|
param.setMacroExpander(bc->macroExpander());
|
2013-08-16 17:45:16 +02:00
|
|
|
param.setWorkingDirectory(bc->buildDirectory().toString());
|
2010-11-12 17:23:55 +01:00
|
|
|
param.setEnvironment(bc->environment());
|
2012-09-11 15:59:17 +02:00
|
|
|
param.setCommand(m_makeStep->makeCommand(bc->environment()));
|
2010-11-12 17:23:55 +01:00
|
|
|
param.setArguments(m_makeStep->allArguments());
|
|
|
|
|
m_summaryText = param.summary(displayName());
|
2009-08-06 18:31:46 +02:00
|
|
|
emit updateSummary();
|
|
|
|
|
}
|
|
|
|
|
|
2009-08-06 15:31:32 +02:00
|
|
|
QString GenericMakeStepConfigWidget::summaryText() const
|
|
|
|
|
{
|
2009-08-06 18:31:46 +02:00
|
|
|
return m_summaryText;
|
2009-08-06 15:31:32 +02:00
|
|
|
}
|
|
|
|
|
|
2009-03-18 15:58:36 +01:00
|
|
|
void GenericMakeStepConfigWidget::itemChanged(QListWidgetItem *item)
|
|
|
|
|
{
|
2009-10-27 14:16:28 +01:00
|
|
|
m_makeStep->setBuildTarget(item->text(), item->checkState() & Qt::Checked);
|
2009-08-06 18:31:46 +02:00
|
|
|
updateDetails();
|
2009-03-18 15:58:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GenericMakeStepConfigWidget::makeLineEditTextEdited()
|
|
|
|
|
{
|
2009-10-27 14:16:28 +01:00
|
|
|
m_makeStep->m_makeCommand = m_ui->makeLineEdit->text();
|
2009-08-06 18:31:46 +02:00
|
|
|
updateDetails();
|
2009-03-18 15:58:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GenericMakeStepConfigWidget::makeArgumentsLineEditTextEdited()
|
|
|
|
|
{
|
2010-10-19 11:14:03 +02:00
|
|
|
m_makeStep->m_makeArguments = m_ui->makeArgumentsLineEdit->text();
|
2009-08-06 18:31:46 +02:00
|
|
|
updateDetails();
|
2009-03-10 14:20:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//
|
2009-03-18 13:33:00 +01:00
|
|
|
// GenericMakeStepFactory
|
2009-03-10 14:20:07 +01:00
|
|
|
//
|
|
|
|
|
|
2010-01-14 17:41:29 +01:00
|
|
|
GenericMakeStepFactory::GenericMakeStepFactory(QObject *parent) :
|
2012-08-14 15:37:38 +02:00
|
|
|
IBuildStepFactory(parent)
|
2010-01-14 17:41:29 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-18 12:37:29 +02:00
|
|
|
QList<BuildStepInfo> GenericMakeStepFactory::availableSteps(BuildStepList *parent) const
|
2010-01-14 17:41:29 +01:00
|
|
|
{
|
2016-05-18 12:37:29 +02:00
|
|
|
if (parent->target()->project()->id() != Constants::GENERICPROJECT_ID)
|
|
|
|
|
return {};
|
|
|
|
|
|
2017-02-22 15:09:35 +01:00
|
|
|
return {{GENERIC_MS_ID,
|
|
|
|
|
QCoreApplication::translate("GenericProjectManager::Internal::GenericMakeStep",
|
|
|
|
|
GENERIC_MS_DISPLAY_NAME)}};
|
2010-01-14 17:41:29 +01:00
|
|
|
}
|
|
|
|
|
|
2012-08-14 15:37:38 +02:00
|
|
|
BuildStep *GenericMakeStepFactory::create(BuildStepList *parent, const Id id)
|
2010-01-14 17:41:29 +01:00
|
|
|
{
|
2016-05-18 12:37:29 +02:00
|
|
|
Q_UNUSED(id)
|
2016-12-25 17:59:17 +01:00
|
|
|
auto step = new GenericMakeStep(parent);
|
2012-08-03 15:24:33 +02:00
|
|
|
if (parent->id() == ProjectExplorer::Constants::BUILDSTEPS_CLEAN) {
|
2011-11-24 12:42:52 +01:00
|
|
|
step->setClean(true);
|
2016-12-25 17:59:17 +01:00
|
|
|
step->setBuildTarget("clean", /* on = */ true);
|
2012-08-03 15:24:33 +02:00
|
|
|
} else if (parent->id() == ProjectExplorer::Constants::BUILDSTEPS_BUILD) {
|
2016-12-25 17:59:17 +01:00
|
|
|
step->setBuildTarget("all", /* on = */ true);
|
2011-11-24 12:42:52 +01:00
|
|
|
}
|
|
|
|
|
return step;
|
2010-01-14 17:41:29 +01:00
|
|
|
}
|
|
|
|
|
|
2012-08-14 15:37:38 +02:00
|
|
|
BuildStep *GenericMakeStepFactory::clone(BuildStepList *parent, BuildStep *source)
|
2009-03-10 14:20:07 +01:00
|
|
|
{
|
2016-12-25 17:59:17 +01:00
|
|
|
auto old = qobject_cast<GenericMakeStep *>(source);
|
2010-01-14 17:41:29 +01:00
|
|
|
Q_ASSERT(old);
|
|
|
|
|
return new GenericMakeStep(parent, old);
|
2009-03-10 14:20:07 +01:00
|
|
|
}
|
|
|
|
|
|
2012-08-14 15:37:38 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace GenericProjectManager
|