2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
**
|
2011-01-11 16:28:15 +01:00
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2011-11-02 15:59:12 +01:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** This file may be used under the terms of the GNU Lesser General Public
|
|
|
|
** License version 2.1 as published by the Free Software Foundation and
|
|
|
|
** appearing in the file LICENSE.LGPL included in the packaging of this file.
|
|
|
|
** Please review the following information to ensure the GNU Lesser General
|
|
|
|
** Public License version 2.1 requirements will be met:
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Other Usage
|
|
|
|
**
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** If you have questions regarding the use of this file, please contact
|
2011-11-02 15:59:12 +01:00
|
|
|
** Nokia at qt-info@nokia.com.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "makestep.h"
|
2010-03-17 17:45:33 +01:00
|
|
|
#include "ui_makestep.h"
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "qt4project.h"
|
2010-02-08 15:50:06 +01:00
|
|
|
#include "qt4target.h"
|
2011-08-18 16:46:44 +02:00
|
|
|
#include "qt4nodes.h"
|
2009-11-25 18:50:20 +01:00
|
|
|
#include "qt4buildconfiguration.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "qt4projectmanagerconstants.h"
|
|
|
|
|
2010-11-01 14:14:17 +01:00
|
|
|
#include <projectexplorer/toolchain.h>
|
2010-07-16 14:00:41 +02:00
|
|
|
#include <projectexplorer/buildsteplist.h>
|
2010-03-17 17:45:33 +01:00
|
|
|
#include <projectexplorer/projectexplorer.h>
|
2011-03-24 12:43:45 +01:00
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
2010-03-17 17:45:33 +01:00
|
|
|
#include <extensionsystem/pluginmanager.h>
|
2010-10-19 11:14:03 +02:00
|
|
|
#include <utils/qtcprocess.h>
|
2011-05-24 16:15:15 +02:00
|
|
|
#include <qtsupport/qtparser.h>
|
2009-02-16 13:12:12 +01:00
|
|
|
|
2008-12-09 15:25:01 +01:00
|
|
|
#include <QtCore/QDir>
|
|
|
|
#include <QtCore/QFileInfo>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
using ExtensionSystem::PluginManager;
|
|
|
|
using namespace Qt4ProjectManager;
|
|
|
|
using namespace Qt4ProjectManager::Internal;
|
|
|
|
|
2010-01-14 17:41:29 +01:00
|
|
|
namespace {
|
|
|
|
const char * const MAKESTEP_BS_ID("Qt4ProjectManager.MakeStep");
|
|
|
|
|
|
|
|
const char * const MAKE_ARGUMENTS_KEY("Qt4ProjectManager.MakeStep.MakeArguments");
|
|
|
|
const char * const MAKE_COMMAND_KEY("Qt4ProjectManager.MakeStep.MakeCommand");
|
|
|
|
const char * const CLEAN_KEY("Qt4ProjectManager.MakeStep.Clean");
|
|
|
|
}
|
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
MakeStep::MakeStep(ProjectExplorer::BuildStepList *bsl) :
|
|
|
|
AbstractProcessStep(bsl, QLatin1String(MAKESTEP_BS_ID)),
|
2010-01-14 17:41:29 +01:00
|
|
|
m_clean(false)
|
2009-10-27 14:16:28 +01:00
|
|
|
{
|
2010-01-14 17:41:29 +01:00
|
|
|
ctor();
|
2009-10-27 14:16:28 +01:00
|
|
|
}
|
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
MakeStep::MakeStep(ProjectExplorer::BuildStepList *bsl, MakeStep *bs) :
|
|
|
|
AbstractProcessStep(bsl, bs),
|
2009-10-27 14:16:28 +01:00
|
|
|
m_clean(bs->m_clean),
|
2009-11-30 19:30:51 +01:00
|
|
|
m_userArgs(bs->m_userArgs),
|
2009-10-27 14:16:28 +01:00
|
|
|
m_makeCmd(bs->m_makeCmd)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-01-14 17:41:29 +01:00
|
|
|
ctor();
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
MakeStep::MakeStep(ProjectExplorer::BuildStepList *bsl, const QString &id) :
|
|
|
|
AbstractProcessStep(bsl, id),
|
2010-01-14 17:41:29 +01:00
|
|
|
m_clean(false)
|
|
|
|
{
|
|
|
|
ctor();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
2010-01-14 17:41:29 +01:00
|
|
|
void MakeStep::ctor()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-08-19 12:26:21 +02:00
|
|
|
setDefaultDisplayName(tr("Make", "Qt4 MakeStep display name."));
|
2010-01-14 17:41:29 +01:00
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-01-14 17:41:29 +01:00
|
|
|
MakeStep::~MakeStep()
|
|
|
|
{
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
2009-11-26 14:43:27 +01:00
|
|
|
Qt4BuildConfiguration *MakeStep::qt4BuildConfiguration() const
|
|
|
|
{
|
|
|
|
return static_cast<Qt4BuildConfiguration *>(buildConfiguration());
|
|
|
|
}
|
|
|
|
|
2009-10-15 19:06:51 +02:00
|
|
|
void MakeStep::setClean(bool clean)
|
|
|
|
{
|
|
|
|
m_clean = clean;
|
|
|
|
}
|
|
|
|
|
2011-03-14 14:39:02 +01:00
|
|
|
bool MakeStep::isClean() const
|
|
|
|
{
|
|
|
|
return m_clean;
|
|
|
|
}
|
|
|
|
|
2010-01-14 17:41:29 +01:00
|
|
|
QVariantMap MakeStep::toMap() const
|
2009-10-15 19:06:51 +02:00
|
|
|
{
|
2010-01-14 17:41:29 +01:00
|
|
|
QVariantMap map(ProjectExplorer::AbstractProcessStep::toMap());
|
|
|
|
map.insert(QLatin1String(MAKE_ARGUMENTS_KEY), m_userArgs);
|
|
|
|
map.insert(QLatin1String(MAKE_COMMAND_KEY), m_makeCmd);
|
|
|
|
map.insert(QLatin1String(CLEAN_KEY), m_clean);
|
|
|
|
return map;
|
2009-10-15 19:06:51 +02:00
|
|
|
}
|
|
|
|
|
2010-01-14 17:41:29 +01:00
|
|
|
bool MakeStep::fromMap(const QVariantMap &map)
|
2009-10-15 19:06:51 +02:00
|
|
|
{
|
2010-01-14 17:41:29 +01:00
|
|
|
m_makeCmd = map.value(QLatin1String(MAKE_COMMAND_KEY)).toString();
|
2010-10-19 11:14:03 +02:00
|
|
|
m_userArgs = map.value(QLatin1String(MAKE_ARGUMENTS_KEY)).toString();
|
2010-01-14 17:41:29 +01:00
|
|
|
m_clean = map.value(QLatin1String(CLEAN_KEY)).toBool();
|
2009-10-15 19:06:51 +02:00
|
|
|
|
2010-02-25 16:51:27 +01:00
|
|
|
return ProjectExplorer::AbstractProcessStep::fromMap(map);
|
2009-10-15 19:06:51 +02:00
|
|
|
}
|
|
|
|
|
2009-10-27 14:16:28 +01:00
|
|
|
bool MakeStep::init()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-11-26 14:43:27 +01:00
|
|
|
Qt4BuildConfiguration *bc = qt4BuildConfiguration();
|
2011-03-24 12:43:45 +01:00
|
|
|
|
2011-03-24 19:45:19 +01:00
|
|
|
m_tasks.clear();
|
2011-03-24 12:43:45 +01:00
|
|
|
if (!bc->toolChain()) {
|
|
|
|
m_tasks.append(ProjectExplorer::Task(ProjectExplorer::Task::Error,
|
2011-06-21 17:07:45 +02:00
|
|
|
tr("Qt Creator needs a tool chain set up to build. Configure a tool chain in Project mode."),
|
2011-03-24 12:43:45 +01:00
|
|
|
QString(), -1,
|
|
|
|
QLatin1String(ProjectExplorer::Constants::TASK_CATEGORY_BUILDSYSTEM)));
|
|
|
|
}
|
|
|
|
|
2010-11-12 17:23:55 +01:00
|
|
|
ProjectExplorer::ProcessParameters *pp = processParameters();
|
|
|
|
pp->setMacroExpander(bc->macroExpander());
|
|
|
|
|
2010-01-13 18:00:02 +01:00
|
|
|
QString workingDirectory;
|
|
|
|
if (bc->subNodeBuild())
|
|
|
|
workingDirectory = bc->subNodeBuild()->buildDir();
|
|
|
|
else
|
|
|
|
workingDirectory = bc->buildDirectory();
|
2010-11-12 17:23:55 +01:00
|
|
|
pp->setWorkingDirectory(workingDirectory);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-11-25 18:50:20 +01:00
|
|
|
QString makeCmd = bc->makeCommand();
|
2009-10-27 14:16:28 +01:00
|
|
|
if (!m_makeCmd.isEmpty())
|
|
|
|
makeCmd = m_makeCmd;
|
2010-11-12 17:23:55 +01:00
|
|
|
pp->setCommand(makeCmd);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-06-22 16:11:45 +02:00
|
|
|
// If we are cleaning, then make can fail with a error code, but that doesn't mean
|
|
|
|
// we should stop the clean queue
|
2010-01-11 10:22:55 +01:00
|
|
|
// That is mostly so that rebuild works on a already clean project
|
2009-10-15 19:06:51 +02:00
|
|
|
setIgnoreReturnValue(m_clean);
|
2010-10-19 11:14:03 +02:00
|
|
|
|
|
|
|
QString args;
|
2010-10-05 17:38:45 +02:00
|
|
|
|
|
|
|
ProjectExplorer::ToolChain *toolchain = bc->toolChain();
|
|
|
|
|
2011-03-24 20:44:46 +01:00
|
|
|
if (bc->subNodeBuild()) {
|
|
|
|
QString makefile = bc->subNodeBuild()->makefile();
|
2011-09-19 10:02:45 +02:00
|
|
|
if (!makefile.isEmpty()) {
|
2010-10-19 11:14:03 +02:00
|
|
|
Utils::QtcProcess::addArg(&args, QLatin1String("-f"));
|
2011-03-24 20:44:46 +01:00
|
|
|
Utils::QtcProcess::addArg(&args, makefile);
|
2011-03-25 17:20:27 +01:00
|
|
|
m_makeFileToCheck = QDir(workingDirectory).filePath(makefile);
|
2011-03-24 20:44:46 +01:00
|
|
|
} else {
|
2011-03-25 17:20:27 +01:00
|
|
|
m_makeFileToCheck = QDir(workingDirectory).filePath("Makefile");
|
2011-03-24 20:44:46 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!bc->makefile().isEmpty()) {
|
|
|
|
Utils::QtcProcess::addArg(&args, QLatin1String("-f"));
|
|
|
|
Utils::QtcProcess::addArg(&args, bc->makefile());
|
2011-03-25 17:20:27 +01:00
|
|
|
m_makeFileToCheck = QDir(workingDirectory).filePath(bc->makefile());
|
2011-03-24 20:44:46 +01:00
|
|
|
} else {
|
2011-03-25 17:20:27 +01:00
|
|
|
m_makeFileToCheck = QDir(workingDirectory).filePath("Makefile");
|
2010-10-05 17:38:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-19 11:14:03 +02:00
|
|
|
Utils::QtcProcess::addArgs(&args, m_userArgs);
|
|
|
|
|
2011-03-14 14:39:02 +01:00
|
|
|
if (!isClean()) {
|
2009-11-25 18:50:20 +01:00
|
|
|
if (!bc->defaultMakeTarget().isEmpty())
|
2010-10-19 11:14:03 +02:00
|
|
|
Utils::QtcProcess::addArg(&args, bc->defaultMakeTarget());
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2011-11-16 16:08:15 +01:00
|
|
|
|
|
|
|
Utils::Environment env = bc->environment();
|
2011-11-25 09:48:25 +01:00
|
|
|
// Force output to english for the parsers. Do this here and not in the toolchain's
|
|
|
|
// addToEnvironment() to not screw up the users run environment.
|
|
|
|
env.set(QLatin1String("LC_ALL"), QLatin1String("C"));
|
2008-12-02 12:01:29 +01:00
|
|
|
// -w option enables "Enter"/"Leaving directory" messages, which we need for detecting the
|
|
|
|
// absolute file path
|
|
|
|
// FIXME doing this without the user having a way to override this is rather bad
|
|
|
|
// so we only do it for unix and if the user didn't override the make command
|
|
|
|
// but for now this is the least invasive change
|
2011-11-16 16:08:15 +01:00
|
|
|
// We also prepend "L" to the MAKEFLAGS, so that nmake / jom are less verbose
|
|
|
|
ProjectExplorer::ToolChain *toolChain = bc->toolChain();
|
|
|
|
if (toolChain && m_makeCmd.isEmpty()) {
|
|
|
|
if (toolChain->targetAbi().binaryFormat() != ProjectExplorer::Abi::PEFormat )
|
|
|
|
Utils::QtcProcess::addArg(&args, QLatin1String("-w"));
|
|
|
|
if (toolChain->targetAbi().os() == ProjectExplorer::Abi::WindowsOS
|
|
|
|
&& toolChain->targetAbi().osFlavor() != ProjectExplorer::Abi::WindowsMSysFlavor) {
|
|
|
|
env.set("MAKEFLAGS", env.value("MAKEFLAGS").prepend("L"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pp->setEnvironment(env);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-10-15 19:06:51 +02:00
|
|
|
setEnabled(true);
|
2010-11-12 17:23:55 +01:00
|
|
|
pp->setArguments(args);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2011-05-04 13:14:46 +02:00
|
|
|
ProjectExplorer::IOutputParser *parser = 0;
|
|
|
|
if (bc->qtVersion())
|
|
|
|
parser = bc->qtVersion()->createOutputParser();
|
|
|
|
if (parser)
|
2011-05-24 16:15:15 +02:00
|
|
|
parser->appendOutputParser(new QtSupport::QtParser);
|
2011-05-04 13:14:46 +02:00
|
|
|
else
|
2011-05-24 16:15:15 +02:00
|
|
|
parser = new QtSupport::QtParser;
|
2009-12-09 13:54:46 +01:00
|
|
|
if (toolchain)
|
2010-12-09 10:41:13 +01:00
|
|
|
parser->appendOutputParser(toolchain->outputParser());
|
2010-12-06 12:18:38 +01:00
|
|
|
|
2010-12-09 10:41:13 +01:00
|
|
|
parser->setWorkingDirectory(workingDirectory);
|
2010-12-06 12:18:38 +01:00
|
|
|
|
2010-12-09 10:41:13 +01:00
|
|
|
setOutputParser(parser);
|
2009-12-09 13:54:46 +01:00
|
|
|
|
|
|
|
return AbstractProcessStep::init();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MakeStep::run(QFutureInterface<bool> & fi)
|
|
|
|
{
|
2011-08-18 16:46:44 +02:00
|
|
|
if (qt4BuildConfiguration()->qt4Target()->qt4Project()->rootQt4ProjectNode()->projectType() == ScriptTemplate) {
|
2008-12-02 12:01:29 +01:00
|
|
|
fi.reportResult(true);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-25 17:20:27 +01:00
|
|
|
if (!QFileInfo(m_makeFileToCheck).exists()) {
|
2011-09-22 12:59:31 +02:00
|
|
|
if (!ignoreReturnValue())
|
2011-06-21 17:07:45 +02:00
|
|
|
emit addOutput(tr("Cannot find Makefile. Check your build settings."), BuildStep::MessageOutput);
|
2011-09-22 12:59:31 +02:00
|
|
|
fi.reportResult(ignoreReturnValue());
|
2011-03-24 20:44:46 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-24 12:43:45 +01:00
|
|
|
// Warn on common error conditions:
|
|
|
|
bool canContinue = true;
|
|
|
|
foreach (const ProjectExplorer::Task &t, m_tasks) {
|
|
|
|
addTask(t);
|
|
|
|
if (t.type == ProjectExplorer::Task::Error)
|
|
|
|
canContinue = false;
|
|
|
|
}
|
|
|
|
if (!canContinue) {
|
2011-10-21 16:39:14 +02:00
|
|
|
emit addOutput(tr("Configuration is faulty. Check the Issues view for details."), BuildStep::MessageOutput);
|
2011-03-24 12:43:45 +01:00
|
|
|
fi.reportResult(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-12-09 13:54:46 +01:00
|
|
|
AbstractProcessStep::run(fi);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
2010-04-09 15:04:20 +02:00
|
|
|
bool MakeStep::processSucceeded(int exitCode, QProcess::ExitStatus status)
|
|
|
|
{
|
|
|
|
// Symbian does retun 0, even on failed makes! So we check for fatal make errors here.
|
2010-12-09 10:41:13 +01:00
|
|
|
if (outputParser() && outputParser()->hasFatalErrors())
|
2010-12-06 12:18:38 +01:00
|
|
|
return false;
|
2010-04-09 15:04:20 +02:00
|
|
|
|
|
|
|
return AbstractProcessStep::processSucceeded(exitCode, status);
|
|
|
|
}
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
bool MakeStep::immutable() const
|
|
|
|
{
|
2009-07-27 16:36:27 +02:00
|
|
|
return false;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ProjectExplorer::BuildStepConfigWidget *MakeStep::createConfigWidget()
|
|
|
|
{
|
|
|
|
return new MakeStepConfigWidget(this);
|
|
|
|
}
|
|
|
|
|
2010-10-19 11:14:03 +02:00
|
|
|
QString MakeStep::userArguments()
|
2009-10-15 19:06:51 +02:00
|
|
|
{
|
2009-11-30 19:30:51 +01:00
|
|
|
return m_userArgs;
|
2009-10-15 19:06:51 +02:00
|
|
|
}
|
|
|
|
|
2010-10-19 11:14:03 +02:00
|
|
|
void MakeStep::setUserArguments(const QString &arguments)
|
2009-07-24 18:53:54 +02:00
|
|
|
{
|
2009-11-30 19:30:51 +01:00
|
|
|
m_userArgs = arguments;
|
|
|
|
emit userArgumentsChanged();
|
2009-07-24 18:53:54 +02:00
|
|
|
}
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
MakeStepConfigWidget::MakeStepConfigWidget(MakeStep *makeStep)
|
2011-11-23 15:15:01 +00:00
|
|
|
: BuildStepConfigWidget(), m_ui(new Internal::Ui::MakeStep), m_makeStep(makeStep), m_ignoreChange(false)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-03-17 17:45:33 +01:00
|
|
|
m_ui->setupUi(this);
|
2010-09-28 11:49:43 +02:00
|
|
|
|
|
|
|
m_ui->makePathChooser->setExpectedKind(Utils::PathChooser::ExistingCommand);
|
|
|
|
m_ui->makePathChooser->setBaseDirectory(Utils::PathChooser::homePath());
|
|
|
|
|
2011-05-30 13:30:10 +02:00
|
|
|
|
|
|
|
const QString &makeCmd = m_makeStep->m_makeCmd;
|
|
|
|
m_ui->makePathChooser->setPath(makeCmd);
|
|
|
|
m_ui->makeArgumentsLineEdit->setText(m_makeStep->userArguments());
|
|
|
|
|
|
|
|
updateMakeOverrideLabel();
|
|
|
|
updateDetails();
|
|
|
|
|
2010-09-28 18:11:52 +02:00
|
|
|
connect(m_ui->makePathChooser, SIGNAL(changed(QString)),
|
2009-12-03 18:37:27 +01:00
|
|
|
this, SLOT(makeEdited()));
|
2010-03-17 17:45:33 +01:00
|
|
|
connect(m_ui->makeArgumentsLineEdit, SIGNAL(textEdited(QString)),
|
2009-12-03 18:37:27 +01:00
|
|
|
this, SLOT(makeArgumentsLineEdited()));
|
2009-07-24 18:53:54 +02:00
|
|
|
|
2009-11-30 19:30:51 +01:00
|
|
|
connect(makeStep, SIGNAL(userArgumentsChanged()),
|
|
|
|
this, SLOT(userArgumentsChanged()));
|
2009-11-25 20:02:06 +01:00
|
|
|
connect(makeStep->buildConfiguration(), SIGNAL(buildDirectoryChanged()),
|
2009-10-29 12:24:25 +01:00
|
|
|
this, SLOT(updateDetails()));
|
2011-04-14 17:23:48 +02:00
|
|
|
connect(makeStep->buildConfiguration(), SIGNAL(toolChainChanged()),
|
|
|
|
this, SLOT(updateDetails()));
|
2009-10-29 12:24:25 +01:00
|
|
|
|
2010-03-30 17:08:00 +02:00
|
|
|
connect(makeStep->qt4BuildConfiguration(), SIGNAL(qtVersionChanged()),
|
|
|
|
this, SLOT(qtVersionChanged()));
|
|
|
|
|
2009-08-12 17:02:28 +02:00
|
|
|
connect(ProjectExplorer::ProjectExplorerPlugin::instance(), SIGNAL(settingsChanged()),
|
|
|
|
this, SLOT(updateMakeOverrideLabel()));
|
|
|
|
connect(ProjectExplorer::ProjectExplorerPlugin::instance(), SIGNAL(settingsChanged()),
|
2009-08-13 13:47:33 +02:00
|
|
|
this, SLOT(updateDetails()));
|
2009-08-06 15:31:32 +02:00
|
|
|
}
|
|
|
|
|
2010-03-17 17:45:33 +01:00
|
|
|
MakeStepConfigWidget::~MakeStepConfigWidget()
|
|
|
|
{
|
|
|
|
delete m_ui;
|
|
|
|
}
|
|
|
|
|
2010-03-30 17:08:00 +02:00
|
|
|
void MakeStepConfigWidget::qtVersionChanged()
|
|
|
|
{
|
|
|
|
updateMakeOverrideLabel();
|
|
|
|
updateDetails();
|
|
|
|
}
|
|
|
|
|
2009-08-12 17:02:28 +02:00
|
|
|
void MakeStepConfigWidget::updateMakeOverrideLabel()
|
|
|
|
{
|
2009-11-26 14:43:27 +01:00
|
|
|
Qt4BuildConfiguration *qt4bc = m_makeStep->qt4BuildConfiguration();
|
2010-03-17 17:45:33 +01:00
|
|
|
m_ui->makeLabel->setText(tr("Override %1:").arg(qt4bc->makeCommand()));
|
2009-08-12 17:02:28 +02:00
|
|
|
}
|
|
|
|
|
2009-08-13 11:47:34 +02:00
|
|
|
void MakeStepConfigWidget::updateDetails()
|
2009-08-06 15:31:32 +02:00
|
|
|
{
|
2009-11-26 14:43:27 +01:00
|
|
|
Qt4BuildConfiguration *bc = m_makeStep->qt4BuildConfiguration();
|
2009-07-24 18:53:54 +02:00
|
|
|
|
2010-11-12 17:23:55 +01:00
|
|
|
ProjectExplorer::ProcessParameters param;
|
|
|
|
param.setMacroExpander(bc->macroExpander());
|
|
|
|
param.setWorkingDirectory(bc->buildDirectory());
|
2009-11-25 18:50:20 +01:00
|
|
|
QString makeCmd = bc->makeCommand();
|
2009-10-27 14:16:28 +01:00
|
|
|
if (!m_makeStep->m_makeCmd.isEmpty())
|
|
|
|
makeCmd = m_makeStep->m_makeCmd;
|
2010-11-12 17:23:55 +01:00
|
|
|
param.setCommand(makeCmd);
|
2011-03-14 14:39:02 +01:00
|
|
|
|
|
|
|
QString args = m_makeStep->userArguments();
|
|
|
|
if (!m_makeStep->isClean()) {
|
|
|
|
if (!bc->defaultMakeTarget().isEmpty())
|
|
|
|
Utils::QtcProcess::addArg(&args, bc->defaultMakeTarget());
|
|
|
|
}
|
2011-09-29 18:52:57 +02:00
|
|
|
|
|
|
|
Utils::Environment env = bc->environment();
|
2011-11-25 09:48:25 +01:00
|
|
|
// Force output to english for the parsers. Do this here and not in the toolchain's
|
|
|
|
// addToEnvironment() to not screw up the users run environment.
|
|
|
|
env.set(QLatin1String("LC_ALL"), QLatin1String("C"));
|
2009-08-06 15:31:32 +02:00
|
|
|
// -w option enables "Enter"/"Leaving directory" messages, which we need for detecting the
|
|
|
|
// absolute file path
|
2009-08-13 17:21:18 +02:00
|
|
|
// FIXME doing this without the user having a way to override this is rather bad
|
2009-08-06 15:31:32 +02:00
|
|
|
// so we only do it for unix and if the user didn't override the make command
|
|
|
|
// but for now this is the least invasive change
|
2011-09-29 18:52:57 +02:00
|
|
|
// We also prepend "L" to the MAKEFLAGS, so that nmake / jom are less verbose
|
2009-11-25 18:50:20 +01:00
|
|
|
ProjectExplorer::ToolChain *toolChain = bc->toolChain();
|
2011-09-29 18:52:57 +02:00
|
|
|
if (toolChain && m_makeStep->m_makeCmd.isEmpty()) {
|
|
|
|
if (toolChain->targetAbi().binaryFormat() != ProjectExplorer::Abi::PEFormat )
|
|
|
|
Utils::QtcProcess::addArg(&args, QLatin1String("-w"));
|
|
|
|
if (toolChain->targetAbi().os() == ProjectExplorer::Abi::WindowsOS
|
|
|
|
&& toolChain->targetAbi().osFlavor() != ProjectExplorer::Abi::WindowsMSysFlavor) {
|
|
|
|
env.set("MAKEFLAGS", env.value("MAKEFLAGS").prepend("L"));
|
|
|
|
}
|
|
|
|
}
|
2010-11-12 17:23:55 +01:00
|
|
|
param.setArguments(args);
|
2011-09-29 18:52:57 +02:00
|
|
|
param.setEnvironment(env);
|
2010-11-12 17:23:55 +01:00
|
|
|
m_summaryText = param.summaryInWorkdir(displayName());
|
2011-10-20 14:39:59 +00:00
|
|
|
|
|
|
|
if (param.commandMissing())
|
|
|
|
m_summaryText = tr("<b>Make:</b> %1 not found in the environment.").arg(makeCmd); // Override display text
|
2009-08-06 15:31:32 +02:00
|
|
|
emit updateSummary();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString MakeStepConfigWidget::summaryText() const
|
|
|
|
{
|
|
|
|
return m_summaryText;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString MakeStepConfigWidget::displayName() const
|
|
|
|
{
|
|
|
|
return m_makeStep->displayName();
|
|
|
|
}
|
|
|
|
|
2009-11-30 19:30:51 +01:00
|
|
|
void MakeStepConfigWidget::userArgumentsChanged()
|
2009-07-24 18:53:54 +02:00
|
|
|
{
|
2010-02-15 16:04:01 +01:00
|
|
|
if (m_ignoreChange)
|
|
|
|
return;
|
2010-10-19 11:14:03 +02:00
|
|
|
m_ui->makeArgumentsLineEdit->setText(m_makeStep->userArguments());
|
2009-11-30 19:30:51 +01:00
|
|
|
updateDetails();
|
2009-07-24 18:53:54 +02:00
|
|
|
}
|
|
|
|
|
2009-12-03 18:37:27 +01:00
|
|
|
void MakeStepConfigWidget::makeEdited()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-09-28 11:49:43 +02:00
|
|
|
m_makeStep->m_makeCmd = m_ui->makePathChooser->rawPath();
|
2009-08-13 11:47:34 +02:00
|
|
|
updateDetails();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
2009-12-03 18:37:27 +01:00
|
|
|
void MakeStepConfigWidget::makeArgumentsLineEdited()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-11-30 19:30:51 +01:00
|
|
|
m_ignoreChange = true;
|
2010-10-19 11:14:03 +02:00
|
|
|
m_makeStep->setUserArguments(m_ui->makeArgumentsLineEdit->text());
|
2009-11-30 19:30:51 +01:00
|
|
|
m_ignoreChange = false;
|
2009-08-13 11:47:34 +02:00
|
|
|
updateDetails();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2009-04-20 16:25:48 +02:00
|
|
|
|
|
|
|
///
|
2010-01-14 17:41:29 +01:00
|
|
|
// MakeStepFactory
|
2009-04-20 16:25:48 +02:00
|
|
|
///
|
|
|
|
|
2010-01-14 17:41:29 +01:00
|
|
|
MakeStepFactory::MakeStepFactory(QObject *parent) :
|
|
|
|
ProjectExplorer::IBuildStepFactory(parent)
|
2009-04-20 16:25:48 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
MakeStepFactory::~MakeStepFactory()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
bool MakeStepFactory::canCreate(ProjectExplorer::BuildStepList *parent, const QString &id) const
|
2009-04-20 16:25:48 +02:00
|
|
|
{
|
2010-07-16 14:00:41 +02:00
|
|
|
if (parent->target()->project()->id() != QLatin1String(Constants::QT4PROJECT_ID))
|
2010-01-14 17:41:29 +01:00
|
|
|
return false;
|
|
|
|
return (id == QLatin1String(MAKESTEP_BS_ID));
|
2009-04-20 16:25:48 +02:00
|
|
|
}
|
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
ProjectExplorer::BuildStep *MakeStepFactory::create(ProjectExplorer::BuildStepList *parent, const QString &id)
|
2009-04-20 16:25:48 +02:00
|
|
|
{
|
2010-07-16 14:00:41 +02:00
|
|
|
if (!canCreate(parent, id))
|
2010-01-14 17:41:29 +01:00
|
|
|
return 0;
|
|
|
|
return new MakeStep(parent);
|
2009-10-27 14:16:28 +01:00
|
|
|
}
|
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
bool MakeStepFactory::canClone(ProjectExplorer::BuildStepList *parent, ProjectExplorer::BuildStep *source) const
|
2009-10-27 14:16:28 +01:00
|
|
|
{
|
2010-07-16 14:00:41 +02:00
|
|
|
return canCreate(parent, source->id());
|
2009-04-20 16:25:48 +02:00
|
|
|
}
|
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
ProjectExplorer::BuildStep *MakeStepFactory::clone(ProjectExplorer::BuildStepList *parent, ProjectExplorer::BuildStep *source)
|
2009-04-20 16:25:48 +02:00
|
|
|
{
|
2010-07-16 14:00:41 +02:00
|
|
|
if (!canClone(parent, source))
|
2010-01-14 17:41:29 +01:00
|
|
|
return 0;
|
|
|
|
return new MakeStep(parent, static_cast<MakeStep *>(source));
|
|
|
|
}
|
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
bool MakeStepFactory::canRestore(ProjectExplorer::BuildStepList *parent, const QVariantMap &map) const
|
2010-01-14 17:41:29 +01:00
|
|
|
{
|
|
|
|
QString id(ProjectExplorer::idFromMap(map));
|
2010-07-16 14:00:41 +02:00
|
|
|
return canCreate(parent, id);
|
2010-01-14 17:41:29 +01:00
|
|
|
}
|
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
ProjectExplorer::BuildStep *MakeStepFactory::restore(ProjectExplorer::BuildStepList *parent, const QVariantMap &map)
|
2010-01-14 17:41:29 +01:00
|
|
|
{
|
2010-07-16 14:00:41 +02:00
|
|
|
if (!canRestore(parent, map))
|
2010-01-14 17:41:29 +01:00
|
|
|
return 0;
|
|
|
|
MakeStep *bs(new MakeStep(parent));
|
|
|
|
if (bs->fromMap(map))
|
|
|
|
return bs;
|
|
|
|
delete bs;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
QStringList MakeStepFactory::availableCreationIds(ProjectExplorer::BuildStepList *parent) const
|
2010-01-14 17:41:29 +01:00
|
|
|
{
|
2010-07-16 14:00:41 +02:00
|
|
|
if (parent->target()->project()->id() == QLatin1String(Constants::QT4PROJECT_ID))
|
2010-01-14 17:41:29 +01:00
|
|
|
return QStringList() << QLatin1String(MAKESTEP_BS_ID);
|
|
|
|
return QStringList();
|
2009-04-20 16:25:48 +02:00
|
|
|
}
|
|
|
|
|
2010-01-07 18:17:24 +01:00
|
|
|
QString MakeStepFactory::displayNameForId(const QString &id) const
|
2009-04-20 16:25:48 +02:00
|
|
|
{
|
2010-01-14 17:41:29 +01:00
|
|
|
if (id == QLatin1String(MAKESTEP_BS_ID))
|
|
|
|
return tr("Make");
|
|
|
|
return QString();
|
2009-04-20 16:25:48 +02:00
|
|
|
}
|