2008-12-02 12:01:29 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** Contact: Qt Software Information (qt-info@nokia.com)
|
|
|
|
|
**
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
|
|
|
|
** Non-Open Source Usage
|
|
|
|
|
**
|
2008-12-02 12:01:29 +01:00
|
|
|
** Licensees may use this file in accordance with the Qt Beta Version
|
|
|
|
|
** License Agreement, Agreement version 2.2 provided with the Software or,
|
|
|
|
|
** alternatively, in accordance with the terms contained in a written
|
2008-12-02 14:17:16 +01:00
|
|
|
** agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
** GNU General Public License Usage
|
|
|
|
|
**
|
2008-12-02 12:01:29 +01:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU General
|
|
|
|
|
** Public License versions 2.0 or 3.0 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.GPL included in the packaging
|
|
|
|
|
** of this file. Please review the following information to ensure GNU
|
|
|
|
|
** General Public Licensing requirements will be met:
|
|
|
|
|
**
|
|
|
|
|
** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
|
|
|
|
|
** http://www.gnu.org/copyleft/gpl.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2008-12-02 14:17:16 +01:00
|
|
|
** rights. These rights are described in the Nokia Qt GPL Exception
|
2008-12-16 17:20:00 +01:00
|
|
|
** version 1.3, included in the file GPL_EXCEPTION.txt in this package.
|
2008-12-02 14:17:16 +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"
|
|
|
|
|
#include "qtversionmanager.h"
|
|
|
|
|
|
|
|
|
|
#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")) {
|
2008-12-09 11:07:24 +01:00
|
|
|
if (m_pro->value("useVBOX").toBool()) { //NBS TODO don't special case VBOX like this
|
2008-12-02 12:01:29 +01:00
|
|
|
arguments << "-spec" << "linux-i686fb-g++";
|
|
|
|
|
arguments << "-unix";
|
|
|
|
|
} else {
|
|
|
|
|
arguments << "-spec" << m_pro->qtVersion(buildConfiguration)->mkspec();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
arguments << "-r";
|
|
|
|
|
|
|
|
|
|
if (value(buildConfiguration, "buildConfiguration").isValid()) {
|
|
|
|
|
QStringList configarguments;
|
|
|
|
|
QtVersion::QmakeBuildConfig defaultBuildConfiguration = m_pro->qtVersion(buildConfiguration)->defaultBuildConfig();
|
|
|
|
|
QtVersion::QmakeBuildConfig projectBuildConfiguration = QtVersion::QmakeBuildConfig(value(buildConfiguration, "buildConfiguration").toInt());
|
|
|
|
|
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";
|
|
|
|
|
arguments << configarguments;
|
|
|
|
|
} else {
|
|
|
|
|
arguments << "CONFIG+=debug_and_release";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!additonalArguments.isEmpty())
|
|
|
|
|
arguments << additonalArguments;
|
|
|
|
|
|
|
|
|
|
return arguments;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool QMakeStep::init(const QString &name)
|
|
|
|
|
{
|
|
|
|
|
m_buildConfiguration = name;
|
|
|
|
|
const QtVersion *qtVersion = m_pro->qtVersion(name);
|
|
|
|
|
|
|
|
|
|
if (!qtVersion->isValid()) {
|
|
|
|
|
#if defined(Q_OS_MAC)
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
|
|
Environment environment = m_pro->environment(name);
|
2008-12-09 11:07:24 +01:00
|
|
|
if (!environment.value("QMAKESPEC").isEmpty() && environment.value("QMAKESPEC") != qtVersion->mkspec())
|
2008-12-02 12:01:29 +01:00
|
|
|
emit addToOutputWindow(tr("QMAKESPEC set to ") + environment.value("QMAKESPEC") +
|
|
|
|
|
tr(" overrides mkspec of selected qt ")+qtVersion->mkspec());
|
|
|
|
|
|
|
|
|
|
QString program = qtVersion->qmakeCommand();
|
|
|
|
|
|
|
|
|
|
// Check wheter we need to run qmake
|
|
|
|
|
bool needToRunQMake = true;
|
|
|
|
|
if (QDir(workingDirectory).exists(QLatin1String("Makefile")))
|
|
|
|
|
needToRunQMake = false;
|
|
|
|
|
|
|
|
|
|
QStringList newEnv = environment.toStringList();
|
|
|
|
|
newEnv.sort();
|
|
|
|
|
|
|
|
|
|
if (m_lastEnv != newEnv) {
|
|
|
|
|
m_lastEnv = newEnv;
|
|
|
|
|
needToRunQMake = true;
|
|
|
|
|
}
|
|
|
|
|
if (m_lastWorkingDirectory != workingDirectory) {
|
|
|
|
|
m_lastWorkingDirectory = workingDirectory;
|
|
|
|
|
needToRunQMake = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (m_lastArguments != args) {
|
|
|
|
|
m_lastArguments = args;
|
|
|
|
|
needToRunQMake = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (m_lastProgram != program) {
|
|
|
|
|
m_lastProgram = program;
|
|
|
|
|
needToRunQMake = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (m_forced) {
|
|
|
|
|
m_forced = false;
|
|
|
|
|
needToRunQMake = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setEnabled(name, needToRunQMake);
|
|
|
|
|
setWorkingDirectory(name, workingDirectory);
|
|
|
|
|
setCommand(name, program);
|
|
|
|
|
setArguments(name, args);
|
|
|
|
|
setEnvironment(name, environment);
|
|
|
|
|
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
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QMakeStepConfigWidget::qmakeArgumentsLineEditTextEdited()
|
|
|
|
|
{
|
2008-12-09 15:25:01 +01:00
|
|
|
QTC_ASSERT(!m_buildConfiguration.isNull(), return);
|
2008-12-02 12:01:29 +01:00
|
|
|
m_step->setValue(m_buildConfiguration, "qmakeArgs", ProjectExplorer::Environment::parseCombinedArgString(m_ui.qmakeAdditonalArgumentsLineEdit->text()));
|
|
|
|
|
m_ui.qmakeArgumentsEdit->setPlainText(ProjectExplorer::Environment::joinArgumentList(m_step->arguments(m_buildConfiguration)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QMakeStepConfigWidget::buildConfigurationChanged()
|
|
|
|
|
{
|
|
|
|
|
QtVersion::QmakeBuildConfig buildConfiguration = QtVersion::QmakeBuildConfig(m_step->value(m_buildConfiguration, "buildConfiguration").toInt());
|
|
|
|
|
if (m_ui.buildConfigurationComboBox->currentIndex() == 0) {
|
|
|
|
|
// debug
|
|
|
|
|
buildConfiguration = QtVersion::QmakeBuildConfig(buildConfiguration | QtVersion::DebugBuild);
|
|
|
|
|
} else {
|
|
|
|
|
buildConfiguration = QtVersion::QmakeBuildConfig(buildConfiguration & ~QtVersion::DebugBuild);
|
|
|
|
|
}
|
|
|
|
|
m_step->setValue(m_buildConfiguration, "buildConfiguration", int(buildConfiguration));
|
|
|
|
|
m_ui.qmakeArgumentsEdit->setPlainText(ProjectExplorer::Environment::joinArgumentList(m_step->arguments(m_buildConfiguration)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString QMakeStepConfigWidget::displayName() const
|
|
|
|
|
{
|
|
|
|
|
return m_step->displayName();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QMakeStepConfigWidget::init(const QString &buildConfiguration)
|
|
|
|
|
{
|
|
|
|
|
m_buildConfiguration = buildConfiguration;
|
|
|
|
|
if (buildConfiguration.isEmpty()){
|
|
|
|
|
m_ui.stackedWidget->setCurrentWidget(m_ui.page_2);
|
|
|
|
|
} else {
|
|
|
|
|
m_ui.stackedWidget->setCurrentWidget(m_ui.page_1);
|
|
|
|
|
QString qmakeArgs = ProjectExplorer::Environment::joinArgumentList(m_step->value(buildConfiguration, "qmakeArgs").toStringList());
|
|
|
|
|
m_ui.qmakeAdditonalArgumentsLineEdit->setText(qmakeArgs);
|
|
|
|
|
m_ui.qmakeArgumentsEdit->setPlainText(ProjectExplorer::Environment::joinArgumentList(m_step->arguments(buildConfiguration)));
|
|
|
|
|
bool debug = QtVersion::QmakeBuildConfig(m_step->value(buildConfiguration, "buildConfiguration").toInt()) & QtVersion::DebugBuild;
|
|
|
|
|
m_ui.buildConfigurationComboBox->setCurrentIndex(debug? 0 : 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|