forked from qt-creator/qt-creator
Only used for translations, and that can be achieved much cheaper without the extra translation units created by moc. This reduces the size of the autotoolsprojectmanagers/.obj build dir from 23220 kB to 17696 kB for my debug buld. Take the opportunity to sprinkle in a few 'final'. Change-Id: I85b36c6b8ca58469d0906f1105b2b1587b7c7e6c Reviewed-by: Eike Ziller <eike.ziller@qt.io>
180 lines
6.2 KiB
C++
180 lines
6.2 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2016 Openismus GmbH.
|
|
** Author: Peter Penz (ppenz@openismus.com)
|
|
** Author: Patricia Santana Cruz (patriciasantanacruz@gmail.com)
|
|
** Contact: https://www.qt.io/licensing/
|
|
**
|
|
** This file is part of Qt Creator.
|
|
**
|
|
** 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
|
|
** 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.
|
|
**
|
|
** 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.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "configurestep.h"
|
|
|
|
#include "autotoolsbuildconfiguration.h"
|
|
#include "autotoolsprojectconstants.h"
|
|
|
|
#include <projectexplorer/abstractprocessstep.h>
|
|
#include <projectexplorer/processparameters.h>
|
|
#include <projectexplorer/projectconfigurationaspects.h>
|
|
#include <projectexplorer/project.h>
|
|
#include <projectexplorer/target.h>
|
|
|
|
#include <QDateTime>
|
|
#include <QDir>
|
|
|
|
using namespace ProjectExplorer;
|
|
using namespace Utils;
|
|
|
|
namespace AutotoolsProjectManager {
|
|
namespace Internal {
|
|
|
|
// Helper Function
|
|
|
|
static QString projectDirRelativeToBuildDir(BuildConfiguration *bc)
|
|
{
|
|
const QDir buildDir(bc->buildDirectory().toString());
|
|
QString projDirToBuildDir = buildDir.relativeFilePath(
|
|
bc->project()->projectDirectory().toString());
|
|
if (projDirToBuildDir.isEmpty())
|
|
return QString("./");
|
|
if (!projDirToBuildDir.endsWith('/'))
|
|
projDirToBuildDir.append('/');
|
|
return projDirToBuildDir;
|
|
}
|
|
|
|
// ConfigureStep
|
|
|
|
///**
|
|
// * @brief Implementation of the ProjectExplorer::AbstractProcessStep interface.
|
|
// *
|
|
// * A configure step can be configured by selecting the "Projects" button of Qt
|
|
// * Creator (in the left hand side menu) and under "Build Settings".
|
|
// *
|
|
// * It is possible for the user to specify custom arguments. The corresponding
|
|
// * configuration widget is created by MakeStep::createConfigWidget and is
|
|
// * represented by an instance of the class MakeStepConfigWidget.
|
|
// */
|
|
|
|
class ConfigureStep : public ProjectExplorer::AbstractProcessStep
|
|
{
|
|
Q_DECLARE_TR_FUNCTIONS(AutotoolsProjectManager::Internal::ConfigureStep)
|
|
|
|
public:
|
|
ConfigureStep(BuildStepList *bsl, Core::Id id);
|
|
|
|
void setAdditionalArguments(const QString &list);
|
|
|
|
private:
|
|
bool init() override;
|
|
void doRun() override;
|
|
|
|
ProjectExplorer::BaseStringAspect *m_additionalArgumentsAspect = nullptr;
|
|
bool m_runConfigure = false;
|
|
};
|
|
|
|
ConfigureStep::ConfigureStep(BuildStepList *bsl, Core::Id id)
|
|
: AbstractProcessStep(bsl, id)
|
|
{
|
|
setDefaultDisplayName(tr("Configure"));
|
|
|
|
m_additionalArgumentsAspect = addAspect<BaseStringAspect>();
|
|
m_additionalArgumentsAspect->setDisplayStyle(BaseStringAspect::LineEditDisplay);
|
|
m_additionalArgumentsAspect->setSettingsKey(
|
|
"AutotoolsProjectManager.ConfigureStep.AdditionalArguments");
|
|
m_additionalArgumentsAspect->setLabelText(tr("Arguments:"));
|
|
m_additionalArgumentsAspect->setHistoryCompleter("AutotoolsPM.History.ConfigureArgs");
|
|
|
|
connect(m_additionalArgumentsAspect, &ProjectConfigurationAspect::changed, this, [this] {
|
|
m_runConfigure = true;
|
|
});
|
|
|
|
setSummaryUpdater([this] {
|
|
BuildConfiguration *bc = buildConfiguration();
|
|
|
|
ProcessParameters param;
|
|
param.setMacroExpander(bc->macroExpander());
|
|
param.setEnvironment(bc->environment());
|
|
param.setWorkingDirectory(bc->buildDirectory());
|
|
param.setCommandLine({FilePath::fromString(projectDirRelativeToBuildDir(bc) + "configure"),
|
|
m_additionalArgumentsAspect->value(),
|
|
CommandLine::Raw});
|
|
|
|
return param.summaryInWorkdir(displayName());
|
|
});
|
|
}
|
|
|
|
bool ConfigureStep::init()
|
|
{
|
|
BuildConfiguration *bc = buildConfiguration();
|
|
|
|
ProcessParameters *pp = processParameters();
|
|
pp->setMacroExpander(bc->macroExpander());
|
|
pp->setEnvironment(bc->environment());
|
|
pp->setWorkingDirectory(bc->buildDirectory());
|
|
pp->setCommandLine({FilePath::fromString(projectDirRelativeToBuildDir(bc) + "configure"),
|
|
m_additionalArgumentsAspect->value(),
|
|
CommandLine::Raw});
|
|
|
|
return AbstractProcessStep::init();
|
|
}
|
|
|
|
void ConfigureStep::doRun()
|
|
{
|
|
BuildConfiguration *bc = buildConfiguration();
|
|
|
|
//Check whether we need to run configure
|
|
const QString projectDir(bc->target()->project()->projectDirectory().toString());
|
|
const QFileInfo configureInfo(projectDir + "/configure");
|
|
const QFileInfo configStatusInfo(bc->buildDirectory().toString() + "/config.status");
|
|
|
|
if (!configStatusInfo.exists()
|
|
|| configStatusInfo.lastModified() < configureInfo.lastModified()) {
|
|
m_runConfigure = true;
|
|
}
|
|
|
|
if (!m_runConfigure) {
|
|
emit addOutput(tr("Configuration unchanged, skipping configure step."), BuildStep::OutputFormat::NormalMessage);
|
|
emit finished(true);
|
|
return;
|
|
}
|
|
|
|
m_runConfigure = false;
|
|
AbstractProcessStep::doRun();
|
|
}
|
|
|
|
// ConfigureStepFactory
|
|
|
|
/**
|
|
* @brief Implementation of the ProjectExplorer::IBuildStepFactory interface.
|
|
*
|
|
* The factory is used to create instances of ConfigureStep.
|
|
*/
|
|
|
|
ConfigureStepFactory::ConfigureStepFactory()
|
|
{
|
|
registerStep<ConfigureStep>(Constants::CONFIGURE_STEP_ID);
|
|
setDisplayName(ConfigureStep::tr("Configure", "Display name for AutotoolsProjectManager::ConfigureStep id."));
|
|
setSupportedProjectType(Constants::AUTOTOOLS_PROJECT_ID);
|
|
setSupportedStepList(ProjectExplorer::Constants::BUILDSTEPS_BUILD);
|
|
}
|
|
|
|
} // namespace Internal
|
|
} // namespace AutotoolsProjectManager
|