/************************************************************************** ** ** This file is part of Qt Creator ** ** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). ** ** Contact: Qt Software Information (qt-info@nokia.com) ** ** Commercial Usage ** ** 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. ** ** GNU Lesser General Public License Usage ** ** 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. ** ** If you are unsure which license is appropriate for your use, please ** contact the sales department at qt-sales@nokia.com. ** **************************************************************************/ #include "qmakestep.h" #include "qt4project.h" #include "qt4projectmanagerconstants.h" #include "qt4projectmanager.h" #include "makestep.h" #include "qtversionmanager.h" #include #include #include #include #include #include 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")) { if (m_pro->value("useVBOX").toBool()) { //NBS TODO don't special case VBOX like this 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("\nNo valid Qt version set. Set one in Preferences \n")); #else emit addToOutputWindow(tr("\nNo valid Qt version set. Set one in Tools/Options \n")); #endif return false; } QStringList args = arguments(name); QString workingDirectory = m_pro->buildDirectory(name); Environment environment = m_pro->environment(name); if (!environment.value("QMAKESPEC").isEmpty() && environment.value("QMAKESPEC") != qtVersion->mkspec()) 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 &fi) { if (qobject_cast(project())->rootProjectNode()->projectType() == ScriptTemplate) { fi.reportResult(true); return; } if (!enabled(m_buildConfiguration)) { emit addToOutputWindow(tr("Configuration unchanged, skipping QMake step.")); 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() { Q_ASSERT(!m_buildConfiguration.isNull()); 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))); static_cast(m_step->project())->invalidateCachedTargetInformation(); } 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))); static_cast(m_step->project())->invalidateCachedTargetInformation(); } 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); } }