2009-11-23 12:11:48 +01:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2012-01-26 18:33:46 +01:00
|
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2009-11-23 12:11:48 +01:00
|
|
|
**
|
2011-11-02 15:59:12 +01:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2009-11-23 12:11:48 +01:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
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.
|
2009-11-23 12:11:48 +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.
|
2009-11-23 12:11:48 +01:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "cmakebuildconfiguration.h"
|
2010-01-07 18:17:24 +01:00
|
|
|
|
|
|
|
|
#include "cmakeopenprojectwizard.h"
|
2009-11-23 13:29:45 +01:00
|
|
|
#include "cmakeproject.h"
|
2010-02-08 15:50:06 +01:00
|
|
|
#include "cmaketarget.h"
|
2010-01-07 18:17:24 +01:00
|
|
|
|
2009-11-25 18:50:20 +01:00
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
2011-02-01 18:36:00 +01:00
|
|
|
#include <projectexplorer/toolchainmanager.h>
|
2011-08-18 13:46:52 +02:00
|
|
|
#include <projectexplorer/toolchain.h>
|
2010-07-16 14:00:41 +02:00
|
|
|
#include <projectexplorer/buildsteplist.h>
|
2010-01-07 18:17:24 +01:00
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QInputDialog>
|
2009-11-23 12:11:48 +01:00
|
|
|
|
2009-11-23 13:29:45 +01:00
|
|
|
using namespace CMakeProjectManager;
|
|
|
|
|
using namespace Internal;
|
|
|
|
|
|
2010-01-18 12:11:04 +01:00
|
|
|
namespace {
|
2011-11-02 16:45:13 +01:00
|
|
|
const char CMAKE_BC_ID[] = "CMakeProjectManager.CMakeBuildConfiguration";
|
|
|
|
|
const char TOOLCHAIN_KEY[] = "CMakeProjectManager.CMakeBuildConfiguration.ToolChain";
|
|
|
|
|
const char BUILD_DIRECTORY_KEY[] = "CMakeProjectManager.CMakeBuildConfiguration.BuildDirectory";
|
2010-02-08 15:50:06 +01:00
|
|
|
} // namespace
|
2010-01-18 12:11:04 +01:00
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
CMakeBuildConfiguration::CMakeBuildConfiguration(CMakeTarget *parent) :
|
2011-03-01 21:06:37 +01:00
|
|
|
BuildConfiguration(parent, QLatin1String(CMAKE_BC_ID))
|
2009-11-23 12:11:48 +01:00
|
|
|
{
|
2010-03-25 11:55:49 +01:00
|
|
|
m_buildDirectory = cmakeTarget()->defaultBuildDirectory();
|
2009-12-08 12:21:11 +01:00
|
|
|
}
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
CMakeBuildConfiguration::CMakeBuildConfiguration(CMakeTarget *parent, CMakeBuildConfiguration *source) :
|
|
|
|
|
BuildConfiguration(parent, source),
|
2009-12-08 12:21:11 +01:00
|
|
|
m_buildDirectory(source->m_buildDirectory),
|
|
|
|
|
m_msvcVersion(source->m_msvcVersion)
|
|
|
|
|
{
|
2010-07-16 14:00:41 +02:00
|
|
|
Q_ASSERT(parent);
|
2010-02-25 14:23:11 +01:00
|
|
|
cloneSteps(source);
|
2009-12-08 12:21:11 +01:00
|
|
|
}
|
|
|
|
|
|
2010-01-18 12:11:04 +01:00
|
|
|
QVariantMap CMakeBuildConfiguration::toMap() const
|
2009-12-08 12:21:11 +01:00
|
|
|
{
|
2010-01-18 12:11:04 +01:00
|
|
|
QVariantMap map(ProjectExplorer::BuildConfiguration::toMap());
|
2011-03-01 21:06:37 +01:00
|
|
|
map.insert(QLatin1String(TOOLCHAIN_KEY), toolChain() ? toolChain()->id() : QString());
|
2010-01-18 12:11:04 +01:00
|
|
|
map.insert(QLatin1String(BUILD_DIRECTORY_KEY), m_buildDirectory);
|
|
|
|
|
return map;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool CMakeBuildConfiguration::fromMap(const QVariantMap &map)
|
|
|
|
|
{
|
2010-09-22 15:14:07 +02:00
|
|
|
if (!BuildConfiguration::fromMap(map))
|
|
|
|
|
return false;
|
|
|
|
|
|
2011-03-01 21:06:37 +01:00
|
|
|
setToolChain(ProjectExplorer::ToolChainManager::instance()->
|
|
|
|
|
findToolChain(map.value(QLatin1String(TOOLCHAIN_KEY)).toString()));
|
|
|
|
|
|
|
|
|
|
if (!toolChain()) {
|
|
|
|
|
// restoring from older versions?
|
|
|
|
|
QList<ProjectExplorer::ToolChain *> list = ProjectExplorer::ToolChainManager::instance()->toolChains();
|
|
|
|
|
if (!map.value("CMakeProjectManager.CMakeBuildConfiguration.MsvcVersion").toString().isEmpty()) {
|
|
|
|
|
foreach (ProjectExplorer::ToolChain *tc, list) {
|
|
|
|
|
if (tc->id().startsWith(ProjectExplorer::Constants::MSVC_TOOLCHAIN_ID)) {
|
|
|
|
|
setToolChain(tc);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
|
QString toolChainId = ProjectExplorer::Constants::MINGW_TOOLCHAIN_ID;
|
|
|
|
|
#else
|
|
|
|
|
QString toolChainId = ProjectExplorer::Constants::GCC_TOOLCHAIN_ID;
|
|
|
|
|
#endif
|
|
|
|
|
foreach (ProjectExplorer::ToolChain *tc, list) {
|
|
|
|
|
if (tc->id().startsWith(toolChainId)) {
|
|
|
|
|
setToolChain(tc);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-25 11:55:49 +01:00
|
|
|
m_buildDirectory = map.value(QLatin1String(BUILD_DIRECTORY_KEY), cmakeTarget()->defaultBuildDirectory()).toString();
|
2010-01-18 12:11:04 +01:00
|
|
|
|
2010-09-22 15:14:07 +02:00
|
|
|
return true;
|
2009-11-23 12:11:48 +01:00
|
|
|
}
|
2009-11-23 13:29:45 +01:00
|
|
|
|
2009-11-25 18:50:20 +01:00
|
|
|
CMakeBuildConfiguration::~CMakeBuildConfiguration()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
CMakeTarget *CMakeBuildConfiguration::cmakeTarget() const
|
2009-11-26 14:43:27 +01:00
|
|
|
{
|
2010-02-08 15:50:06 +01:00
|
|
|
return static_cast<CMakeTarget *>(target());
|
2009-11-26 14:43:27 +01:00
|
|
|
}
|
|
|
|
|
|
2009-11-25 18:50:20 +01:00
|
|
|
QString CMakeBuildConfiguration::buildDirectory() const
|
|
|
|
|
{
|
2010-03-25 11:55:49 +01:00
|
|
|
return m_buildDirectory;
|
2009-11-25 18:50:20 +01:00
|
|
|
}
|
|
|
|
|
|
2009-12-03 19:45:09 +01:00
|
|
|
void CMakeBuildConfiguration::setBuildDirectory(const QString &buildDirectory)
|
|
|
|
|
{
|
2009-12-08 12:21:11 +01:00
|
|
|
if (m_buildDirectory == buildDirectory)
|
2009-12-03 19:45:09 +01:00
|
|
|
return;
|
2009-12-08 12:21:11 +01:00
|
|
|
m_buildDirectory = buildDirectory;
|
2009-12-03 19:45:09 +01:00
|
|
|
emit buildDirectoryChanged();
|
2010-09-22 15:14:07 +02:00
|
|
|
emit environmentChanged();
|
2009-12-03 19:45:09 +01:00
|
|
|
}
|
2009-11-25 18:50:20 +01:00
|
|
|
|
2010-07-07 16:32:23 +02:00
|
|
|
ProjectExplorer::IOutputParser *CMakeBuildConfiguration::createOutputParser() const
|
|
|
|
|
{
|
2011-03-01 21:06:37 +01:00
|
|
|
if (toolChain())
|
|
|
|
|
return toolChain()->outputParser();
|
2010-07-07 16:32:23 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-13 14:09:46 +01:00
|
|
|
Utils::Environment CMakeBuildConfiguration::baseEnvironment() const
|
|
|
|
|
{
|
|
|
|
|
Utils::Environment env = BuildConfiguration::baseEnvironment();
|
2011-03-01 21:06:37 +01:00
|
|
|
if (toolChain())
|
|
|
|
|
toolChain()->addToEnvironment(env);
|
2010-09-13 14:09:46 +01:00
|
|
|
return env;
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-07 18:17:24 +01:00
|
|
|
/*!
|
|
|
|
|
\class CMakeBuildConfigurationFactory
|
|
|
|
|
*/
|
|
|
|
|
|
2010-01-18 12:11:04 +01:00
|
|
|
CMakeBuildConfigurationFactory::CMakeBuildConfigurationFactory(QObject *parent) :
|
|
|
|
|
ProjectExplorer::IBuildConfigurationFactory(parent)
|
2010-01-07 18:17:24 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CMakeBuildConfigurationFactory::~CMakeBuildConfigurationFactory()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
QStringList CMakeBuildConfigurationFactory::availableCreationIds(ProjectExplorer::Target *parent) const
|
2010-01-07 18:17:24 +01:00
|
|
|
{
|
2010-02-08 15:50:06 +01:00
|
|
|
if (!qobject_cast<CMakeTarget *>(parent))
|
2010-01-18 12:11:04 +01:00
|
|
|
return QStringList();
|
|
|
|
|
return QStringList() << QLatin1String(CMAKE_BC_ID);
|
2010-01-07 18:17:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString CMakeBuildConfigurationFactory::displayNameForId(const QString &id) const
|
|
|
|
|
{
|
2010-01-18 12:11:04 +01:00
|
|
|
if (id == QLatin1String(CMAKE_BC_ID))
|
|
|
|
|
return tr("Build");
|
|
|
|
|
return QString();
|
2010-01-07 18:17:24 +01:00
|
|
|
}
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
bool CMakeBuildConfigurationFactory::canCreate(ProjectExplorer::Target *parent, const QString &id) const
|
2010-01-07 18:17:24 +01:00
|
|
|
{
|
2010-02-08 15:50:06 +01:00
|
|
|
if (!qobject_cast<CMakeTarget *>(parent))
|
2010-01-18 12:11:04 +01:00
|
|
|
return false;
|
|
|
|
|
if (id == QLatin1String(CMAKE_BC_ID))
|
|
|
|
|
return true;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
CMakeBuildConfiguration *CMakeBuildConfigurationFactory::create(ProjectExplorer::Target *parent, const QString &id)
|
2010-01-18 12:11:04 +01:00
|
|
|
{
|
|
|
|
|
if (!canCreate(parent, id))
|
|
|
|
|
return 0;
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
CMakeTarget *cmtarget = static_cast<CMakeTarget *>(parent);
|
|
|
|
|
Q_ASSERT(cmtarget);
|
2010-01-07 18:17:24 +01:00
|
|
|
|
|
|
|
|
//TODO configuration name should be part of the cmakeopenprojectwizard
|
|
|
|
|
bool ok;
|
|
|
|
|
QString buildConfigurationName = QInputDialog::getText(0,
|
2010-09-14 14:51:50 +02:00
|
|
|
tr("New Configuration"),
|
|
|
|
|
tr("New configuration name:"),
|
2010-01-07 18:17:24 +01:00
|
|
|
QLineEdit::Normal,
|
|
|
|
|
QString(),
|
|
|
|
|
&ok);
|
|
|
|
|
if (!ok || buildConfigurationName.isEmpty())
|
2010-06-21 12:05:18 +02:00
|
|
|
return 0;
|
2010-02-08 15:50:06 +01:00
|
|
|
CMakeBuildConfiguration *bc = new CMakeBuildConfiguration(cmtarget);
|
2010-01-07 18:17:24 +01:00
|
|
|
bc->setDisplayName(buildConfigurationName);
|
|
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
ProjectExplorer::BuildStepList *buildSteps = bc->stepList(ProjectExplorer::Constants::BUILDSTEPS_BUILD);
|
|
|
|
|
ProjectExplorer::BuildStepList *cleanSteps = bc->stepList(ProjectExplorer::Constants::BUILDSTEPS_CLEAN);
|
2010-01-07 18:17:24 +01:00
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
MakeStep *makeStep = new MakeStep(buildSteps);
|
|
|
|
|
buildSteps->insertStep(0, makeStep);
|
|
|
|
|
|
|
|
|
|
MakeStep *cleanMakeStep = new MakeStep(cleanSteps);
|
|
|
|
|
cleanSteps->insertStep(0, cleanMakeStep);
|
2010-10-19 11:14:03 +02:00
|
|
|
cleanMakeStep->setAdditionalArguments("clean");
|
2010-01-07 18:17:24 +01:00
|
|
|
cleanMakeStep->setClean(true);
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
CMakeOpenProjectWizard copw(cmtarget->cmakeProject()->projectManager(),
|
2010-03-25 13:19:27 +01:00
|
|
|
cmtarget->project()->projectDirectory(),
|
2010-01-07 18:17:24 +01:00
|
|
|
bc->buildDirectory(),
|
|
|
|
|
bc->environment());
|
|
|
|
|
if (copw.exec() != QDialog::Accepted) {
|
|
|
|
|
delete bc;
|
2010-06-21 12:05:18 +02:00
|
|
|
return 0;
|
2010-01-07 18:17:24 +01:00
|
|
|
}
|
2011-02-01 18:36:00 +01:00
|
|
|
bc->setToolChain(copw.toolChain());
|
2010-02-08 15:50:06 +01:00
|
|
|
cmtarget->addBuildConfiguration(bc); // this also makes the name unique
|
2010-01-07 18:17:24 +01:00
|
|
|
|
|
|
|
|
bc->setBuildDirectory(copw.buildDirectory());
|
2010-02-08 15:50:06 +01:00
|
|
|
cmtarget->cmakeProject()->parseCMakeLists();
|
2010-01-07 18:17:24 +01:00
|
|
|
|
|
|
|
|
// Default to all
|
2010-02-08 15:50:06 +01:00
|
|
|
if (cmtarget->cmakeProject()->hasBuildTarget("all"))
|
2010-01-07 18:17:24 +01:00
|
|
|
makeStep->setBuildTarget("all", true);
|
2010-01-18 12:11:04 +01:00
|
|
|
|
2010-01-07 18:17:24 +01:00
|
|
|
return bc;
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
bool CMakeBuildConfigurationFactory::canClone(ProjectExplorer::Target *parent, ProjectExplorer::BuildConfiguration *source) const
|
2010-01-18 12:11:04 +01:00
|
|
|
{
|
|
|
|
|
return canCreate(parent, source->id());
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
CMakeBuildConfiguration *CMakeBuildConfigurationFactory::clone(ProjectExplorer::Target *parent, ProjectExplorer::BuildConfiguration *source)
|
2010-01-07 18:17:24 +01:00
|
|
|
{
|
2010-01-18 12:11:04 +01:00
|
|
|
if (!canClone(parent, source))
|
|
|
|
|
return 0;
|
2010-01-07 18:17:24 +01:00
|
|
|
CMakeBuildConfiguration *old = static_cast<CMakeBuildConfiguration *>(source);
|
2010-02-08 15:50:06 +01:00
|
|
|
CMakeTarget *cmtarget(static_cast<CMakeTarget *>(parent));
|
|
|
|
|
return new CMakeBuildConfiguration(cmtarget, old);
|
2010-01-07 18:17:24 +01:00
|
|
|
}
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
bool CMakeBuildConfigurationFactory::canRestore(ProjectExplorer::Target *parent, const QVariantMap &map) const
|
2010-01-07 18:17:24 +01:00
|
|
|
{
|
2010-01-18 12:11:04 +01:00
|
|
|
QString id(ProjectExplorer::idFromMap(map));
|
|
|
|
|
return canCreate(parent, id);
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
CMakeBuildConfiguration *CMakeBuildConfigurationFactory::restore(ProjectExplorer::Target *parent, const QVariantMap &map)
|
2010-01-18 12:11:04 +01:00
|
|
|
{
|
|
|
|
|
if (!canRestore(parent, map))
|
|
|
|
|
return 0;
|
2010-02-08 15:50:06 +01:00
|
|
|
CMakeTarget *cmtarget(static_cast<CMakeTarget *>(parent));
|
|
|
|
|
CMakeBuildConfiguration *bc = new CMakeBuildConfiguration(cmtarget);
|
2010-01-18 12:11:04 +01:00
|
|
|
if (bc->fromMap(map))
|
|
|
|
|
return bc;
|
|
|
|
|
delete bc;
|
|
|
|
|
return 0;
|
2010-01-07 18:17:24 +01:00
|
|
|
}
|
2011-03-03 16:12:00 +01:00
|
|
|
|
|
|
|
|
ProjectExplorer::BuildConfiguration::BuildType CMakeBuildConfiguration::buildType() const
|
|
|
|
|
{
|
|
|
|
|
QString cmakeBuildType;
|
|
|
|
|
QFile cmakeCache(buildDirectory() + "/CMakeCache.txt");
|
|
|
|
|
if (cmakeCache.open(QIODevice::ReadOnly)) {
|
|
|
|
|
while (!cmakeCache.atEnd()) {
|
|
|
|
|
QString line = cmakeCache.readLine();
|
|
|
|
|
if (line.startsWith("CMAKE_BUILD_TYPE")) {
|
|
|
|
|
if (int pos = line.indexOf('=')) {
|
|
|
|
|
cmakeBuildType = line.mid(pos + 1).trimmed();
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
cmakeCache.close();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Cover all common CMake build types
|
|
|
|
|
if (cmakeBuildType.compare("Release", Qt::CaseInsensitive) == 0
|
|
|
|
|
|| cmakeBuildType.compare("MinSizeRel", Qt::CaseInsensitive) == 0)
|
|
|
|
|
{
|
|
|
|
|
return Release;
|
|
|
|
|
} else if (cmakeBuildType.compare("Debug", Qt::CaseInsensitive) == 0
|
|
|
|
|
|| cmakeBuildType.compare("debugfull", Qt::CaseInsensitive) == 0
|
|
|
|
|
|| cmakeBuildType.compare("RelWithDebInfo", Qt::CaseInsensitive) == 0)
|
|
|
|
|
{
|
|
|
|
|
return Debug;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Unknown;
|
|
|
|
|
}
|
|
|
|
|
|