2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Commercial Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Nokia.
|
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
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Alternatively, 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
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** If you are unsure which license is appropriate for your use, please
|
2009-08-14 09:30:56 +02:00
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
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 "qmakestep.h"
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "qt4project.h"
|
|
|
|
|
#include "qt4projectmanagerconstants.h"
|
|
|
|
|
#include "qt4projectmanager.h"
|
|
|
|
|
#include "makestep.h"
|
2009-04-28 12:43:04 +02:00
|
|
|
#include "qtversionmanager.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
2008-12-09 15:25:01 +01:00
|
|
|
#include <utils/qtcassert.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
#include <QFileDialog>
|
|
|
|
|
#include <QDir>
|
|
|
|
|
#include <QFile>
|
|
|
|
|
#include <QCoreApplication>
|
|
|
|
|
|
|
|
|
|
using namespace Qt4ProjectManager;
|
|
|
|
|
using namespace Qt4ProjectManager::Internal;
|
|
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
|
|
|
|
|
QMakeStep::QMakeStep(Qt4Project *project)
|
|
|
|
|
: AbstractProcessStep(project), m_pro(project), m_forced(false)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMakeStep::~QMakeStep()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList QMakeStep::arguments(const QString &buildConfiguration)
|
|
|
|
|
{
|
|
|
|
|
QStringList additonalArguments = value(buildConfiguration, "qmakeArgs").toStringList();
|
|
|
|
|
QStringList arguments;
|
|
|
|
|
arguments << project()->file()->fileName();
|
|
|
|
|
if (!additonalArguments.contains("-spec")) {
|
2009-07-21 14:01:56 +02:00
|
|
|
arguments << "-spec" << m_pro->qtVersion(buildConfiguration)->mkspec();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
arguments << "-r";
|
|
|
|
|
|
2009-07-21 14:50:54 +02:00
|
|
|
if (project()->value(buildConfiguration, "buildConfiguration").isValid()) {
|
2008-12-02 12:01:29 +01:00
|
|
|
QStringList configarguments;
|
|
|
|
|
QtVersion::QmakeBuildConfig defaultBuildConfiguration = m_pro->qtVersion(buildConfiguration)->defaultBuildConfig();
|
2009-07-21 14:50:54 +02:00
|
|
|
QtVersion::QmakeBuildConfig projectBuildConfiguration = QtVersion::QmakeBuildConfig(project()->value(buildConfiguration, "buildConfiguration").toInt());
|
2008-12-02 12:01:29 +01:00
|
|
|
if ((defaultBuildConfiguration & QtVersion::BuildAll) && !(projectBuildConfiguration & QtVersion::BuildAll))
|
|
|
|
|
configarguments << "CONFIG-=debug_and_release";
|
|
|
|
|
if (!(defaultBuildConfiguration & QtVersion::BuildAll) && (projectBuildConfiguration & QtVersion::BuildAll))
|
|
|
|
|
configarguments << "CONFIG+=debug_and_release";
|
|
|
|
|
if ((defaultBuildConfiguration & QtVersion::DebugBuild) && !(projectBuildConfiguration & QtVersion::DebugBuild))
|
|
|
|
|
configarguments << "CONFIG+=release";
|
|
|
|
|
if (!(defaultBuildConfiguration & QtVersion::DebugBuild) && (projectBuildConfiguration & QtVersion::DebugBuild))
|
|
|
|
|
configarguments << "CONFIG+=debug";
|
2009-03-31 18:10:30 +02:00
|
|
|
if (!configarguments.isEmpty())
|
2009-04-01 16:06:13 +02:00
|
|
|
arguments << configarguments;
|
2008-12-02 12:01:29 +01:00
|
|
|
} else {
|
2009-07-21 14:50:54 +02:00
|
|
|
qWarning()<< "The project should always have a qmake build configuration set";
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!additonalArguments.isEmpty())
|
|
|
|
|
arguments << additonalArguments;
|
|
|
|
|
|
|
|
|
|
return arguments;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QMakeStep::init(const QString &name)
|
|
|
|
|
{
|
|
|
|
|
m_buildConfiguration = name;
|
|
|
|
|
const QtVersion *qtVersion = m_pro->qtVersion(name);
|
|
|
|
|
|
2009-01-27 18:23:02 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
if (!qtVersion->isValid()) {
|
2009-06-03 20:45:49 +02:00
|
|
|
#if defined(Q_WS_MAC)
|
2008-12-02 12:01:29 +01:00
|
|
|
emit addToOutputWindow(tr("\n<font color=\"#ff0000\"><b>No valid Qt version set. Set one in Preferences </b></font>\n"));
|
|
|
|
|
#else
|
|
|
|
|
emit addToOutputWindow(tr("\n<font color=\"#ff0000\"><b>No valid Qt version set. Set one in Tools/Options </b></font>\n"));
|
|
|
|
|
#endif
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList args = arguments(name);
|
|
|
|
|
QString workingDirectory = m_pro->buildDirectory(name);
|
|
|
|
|
|
|
|
|
|
QString program = qtVersion->qmakeCommand();
|
|
|
|
|
|
|
|
|
|
// Check wheter we need to run qmake
|
|
|
|
|
bool needToRunQMake = true;
|
2009-07-22 19:17:58 +02:00
|
|
|
if (QDir(workingDirectory).exists(QLatin1String("Makefile"))) {
|
|
|
|
|
QString qtPath = QtVersionManager::findQtVersionFromMakefile(workingDirectory);
|
|
|
|
|
if (qtVersion->path() == qtPath) {
|
2009-07-27 15:02:34 +02:00
|
|
|
needToRunQMake = !m_pro->compareBuildConfigurationToImportFrom(name, workingDirectory);
|
2009-07-22 19:17:58 +02:00
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (m_forced) {
|
|
|
|
|
m_forced = false;
|
|
|
|
|
needToRunQMake = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setEnabled(name, needToRunQMake);
|
|
|
|
|
setWorkingDirectory(name, workingDirectory);
|
|
|
|
|
setCommand(name, program);
|
|
|
|
|
setArguments(name, args);
|
2009-07-22 19:17:58 +02:00
|
|
|
setEnvironment(name, m_pro->environment(name));
|
2008-12-02 12:01:29 +01:00
|
|
|
return AbstractProcessStep::init(name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QMakeStep::run(QFutureInterface<bool> &fi)
|
|
|
|
|
{
|
|
|
|
|
if (qobject_cast<Qt4Project *>(project())->rootProjectNode()->projectType() == ScriptTemplate) {
|
|
|
|
|
fi.reportResult(true);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!enabled(m_buildConfiguration)) {
|
|
|
|
|
emit addToOutputWindow(tr("<font color=\"#0000ff\">Configuration unchanged, skipping QMake step.</font>"));
|
|
|
|
|
fi.reportResult(true);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
AbstractProcessStep::run(fi);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString QMakeStep::name()
|
|
|
|
|
{
|
|
|
|
|
return Constants::QMAKESTEP;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString QMakeStep::displayName()
|
|
|
|
|
{
|
|
|
|
|
return "QMake";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QMakeStep::setForced(bool b)
|
|
|
|
|
{
|
|
|
|
|
m_forced = b;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QMakeStep::forced()
|
|
|
|
|
{
|
|
|
|
|
return m_forced;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ProjectExplorer::BuildStepConfigWidget *QMakeStep::createConfigWidget()
|
|
|
|
|
{
|
|
|
|
|
return new QMakeStepConfigWidget(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QMakeStep::immutable() const
|
|
|
|
|
{
|
2009-07-27 16:36:27 +02:00
|
|
|
return false;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QMakeStep::processStartupFailed()
|
|
|
|
|
{
|
|
|
|
|
m_forced = true;
|
|
|
|
|
AbstractProcessStep::processStartupFailed();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QMakeStep::processFinished(int exitCode, QProcess::ExitStatus status)
|
|
|
|
|
{
|
|
|
|
|
bool result = AbstractProcessStep::processFinished(exitCode, status);
|
|
|
|
|
if (!result)
|
|
|
|
|
m_forced = true;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-24 18:53:54 +02:00
|
|
|
void QMakeStep::setQMakeArguments(const QString &buildConfiguration, const QStringList &arguments)
|
|
|
|
|
{
|
|
|
|
|
setValue(buildConfiguration, "qmakeArgs", arguments);
|
|
|
|
|
emit changed();
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
QMakeStepConfigWidget::QMakeStepConfigWidget(QMakeStep *step)
|
|
|
|
|
: BuildStepConfigWidget(), m_step(step)
|
|
|
|
|
{
|
|
|
|
|
m_ui.setupUi(this);
|
|
|
|
|
connect(m_ui.qmakeAdditonalArgumentsLineEdit, SIGNAL(textEdited(const QString&)),
|
|
|
|
|
this, SLOT(qmakeArgumentsLineEditTextEdited()));
|
|
|
|
|
connect(m_ui.buildConfigurationComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(buildConfigurationChanged()));
|
2009-07-24 18:53:54 +02:00
|
|
|
connect(step, SIGNAL(changed()),
|
|
|
|
|
this, SLOT(update()));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-08-06 15:31:32 +02:00
|
|
|
QString QMakeStepConfigWidget::summaryText() const
|
|
|
|
|
{
|
|
|
|
|
return m_summaryText;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QMakeStepConfigWidget::updateTitleLabel()
|
|
|
|
|
{
|
|
|
|
|
const QtVersion *qtVersion = static_cast<Qt4Project *>(m_step->project())->qtVersion(m_buildConfiguration);
|
|
|
|
|
if (!qtVersion) {
|
|
|
|
|
m_summaryText = tr("<b>QMake:</b> No qt version set. QMake can't be run.");
|
|
|
|
|
emit updateSummary();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList args = m_step->arguments(m_buildConfiguration);
|
|
|
|
|
// We don't want the full path to the .pro file
|
|
|
|
|
int index = args.indexOf(m_step->project()->file()->fileName());
|
|
|
|
|
if (index != -1)
|
|
|
|
|
args[index] = QFileInfo(m_step->project()->file()->fileName()).fileName();
|
|
|
|
|
|
|
|
|
|
// And we only use the .pro filename not the full path
|
|
|
|
|
QString program = QFileInfo(qtVersion->qmakeCommand()).fileName();
|
|
|
|
|
m_summaryText = tr("<b>QMake:</b> %1 %2").arg(program, args.join(" "));
|
|
|
|
|
emit updateSummary();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void QMakeStepConfigWidget::qmakeArgumentsLineEditTextEdited()
|
|
|
|
|
{
|
2008-12-17 15:51:48 +01:00
|
|
|
Q_ASSERT(!m_buildConfiguration.isNull());
|
2008-12-02 12:01:29 +01:00
|
|
|
m_step->setValue(m_buildConfiguration, "qmakeArgs", ProjectExplorer::Environment::parseCombinedArgString(m_ui.qmakeAdditonalArgumentsLineEdit->text()));
|
2009-08-12 13:21:41 +02:00
|
|
|
|
2009-03-19 15:04:43 +01:00
|
|
|
static_cast<Qt4Project *>(m_step->project())->invalidateCachedTargetInformation();
|
2009-08-06 15:31:32 +02:00
|
|
|
updateTitleLabel();
|
2009-08-12 13:21:41 +02:00
|
|
|
updateEffectiveQMakeCall();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QMakeStepConfigWidget::buildConfigurationChanged()
|
|
|
|
|
{
|
2009-07-21 14:50:54 +02:00
|
|
|
QtVersion::QmakeBuildConfig buildConfiguration = QtVersion::QmakeBuildConfig(m_step->project()->value(m_buildConfiguration, "buildConfiguration").toInt());
|
2008-12-02 12:01:29 +01:00
|
|
|
if (m_ui.buildConfigurationComboBox->currentIndex() == 0) {
|
|
|
|
|
// debug
|
|
|
|
|
buildConfiguration = QtVersion::QmakeBuildConfig(buildConfiguration | QtVersion::DebugBuild);
|
|
|
|
|
} else {
|
|
|
|
|
buildConfiguration = QtVersion::QmakeBuildConfig(buildConfiguration & ~QtVersion::DebugBuild);
|
|
|
|
|
}
|
2009-07-21 14:50:54 +02:00
|
|
|
m_step->project()->setValue(m_buildConfiguration, "buildConfiguration", int(buildConfiguration));
|
2009-03-19 15:04:43 +01:00
|
|
|
static_cast<Qt4Project *>(m_step->project())->invalidateCachedTargetInformation();
|
2009-08-06 15:31:32 +02:00
|
|
|
updateTitleLabel();
|
2009-08-12 13:21:41 +02:00
|
|
|
updateEffectiveQMakeCall();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString QMakeStepConfigWidget::displayName() const
|
|
|
|
|
{
|
|
|
|
|
return m_step->displayName();
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-24 18:53:54 +02:00
|
|
|
void QMakeStepConfigWidget::update()
|
|
|
|
|
{
|
|
|
|
|
init(m_buildConfiguration);
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void QMakeStepConfigWidget::init(const QString &buildConfiguration)
|
|
|
|
|
{
|
|
|
|
|
m_buildConfiguration = buildConfiguration;
|
2009-07-16 15:33:19 +02:00
|
|
|
QString qmakeArgs = ProjectExplorer::Environment::joinArgumentList(m_step->value(buildConfiguration, "qmakeArgs").toStringList());
|
|
|
|
|
m_ui.qmakeAdditonalArgumentsLineEdit->setText(qmakeArgs);
|
2009-07-21 14:50:54 +02:00
|
|
|
bool debug = QtVersion::QmakeBuildConfig(m_step->project()->value(buildConfiguration, "buildConfiguration").toInt()) & QtVersion::DebugBuild;
|
2009-07-16 15:33:19 +02:00
|
|
|
m_ui.buildConfigurationComboBox->setCurrentIndex(debug? 0 : 1);
|
2009-08-06 15:31:32 +02:00
|
|
|
updateTitleLabel();
|
2009-08-12 13:21:41 +02:00
|
|
|
updateEffectiveQMakeCall();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QMakeStepConfigWidget::updateEffectiveQMakeCall()
|
|
|
|
|
{
|
|
|
|
|
const QtVersion *qtVersion = static_cast<Qt4Project *>(m_step->project())->qtVersion(m_buildConfiguration);
|
|
|
|
|
if (qtVersion) {
|
|
|
|
|
QString program = QFileInfo(qtVersion->qmakeCommand()).fileName();
|
|
|
|
|
m_ui.qmakeArgumentsEdit->setPlainText(program + " " + ProjectExplorer::Environment::joinArgumentList(m_step->arguments(m_buildConfiguration)));
|
|
|
|
|
} else {
|
|
|
|
|
m_ui.qmakeArgumentsEdit->setPlainText(tr("No valid qt version set."));
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-04-20 16:25:48 +02:00
|
|
|
////
|
|
|
|
|
// QMakeStepFactory
|
|
|
|
|
////
|
|
|
|
|
|
|
|
|
|
QMakeStepFactory::QMakeStepFactory()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QMakeStepFactory::~QMakeStepFactory()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QMakeStepFactory::canCreate(const QString & name) const
|
|
|
|
|
{
|
|
|
|
|
return (name == Constants::QMAKESTEP);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ProjectExplorer::BuildStep * QMakeStepFactory::create(ProjectExplorer::Project * pro, const QString & name) const
|
|
|
|
|
{
|
2009-07-13 17:35:17 +02:00
|
|
|
Q_UNUSED(name)
|
2009-04-20 16:25:48 +02:00
|
|
|
return new QMakeStep(static_cast<Qt4Project *>(pro));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList QMakeStepFactory::canCreateForProject(ProjectExplorer::Project *pro) const
|
|
|
|
|
{
|
2009-07-28 16:01:22 +02:00
|
|
|
Qt4Project *project = qobject_cast<Qt4Project *>(pro);
|
|
|
|
|
if (project && !project->qmakeStep())
|
|
|
|
|
return QStringList() << Constants::QMAKESTEP;
|
2009-04-20 16:25:48 +02:00
|
|
|
return QStringList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString QMakeStepFactory::displayNameForName(const QString &name) const
|
|
|
|
|
{
|
2009-07-28 16:01:22 +02:00
|
|
|
Q_UNUSED(name);
|
|
|
|
|
return tr("QMake");
|
2009-04-20 16:25:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|