2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +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).
|
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
|
|
|
#ifndef BUILDCONFIGURATION_H
|
|
|
|
|
#define BUILDCONFIGURATION_H
|
|
|
|
|
|
2009-09-21 15:50:27 +02:00
|
|
|
#include "projectexplorer_export.h"
|
2010-11-01 11:18:27 +01:00
|
|
|
#include "projectconfiguration.h"
|
2010-09-23 10:35:23 +02:00
|
|
|
|
|
|
|
|
#include <utils/environment.h>
|
2009-09-21 15:50:27 +02:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QStringList>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2011-08-18 13:46:52 +02:00
|
|
|
namespace Utils {
|
|
|
|
|
class AbstractMacroExpander;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
namespace ProjectExplorer {
|
2009-06-12 13:55:08 +02:00
|
|
|
|
2010-11-12 17:23:55 +01:00
|
|
|
class BuildConfiguration;
|
2010-07-16 14:00:41 +02:00
|
|
|
class BuildStepList;
|
2010-02-08 15:50:06 +01:00
|
|
|
class Target;
|
2011-02-01 18:36:00 +01:00
|
|
|
class ToolChain;
|
2010-07-07 16:32:23 +02:00
|
|
|
class IOutputParser;
|
2009-09-30 18:36:31 +02:00
|
|
|
|
2010-01-18 12:11:04 +01:00
|
|
|
class PROJECTEXPLORER_EXPORT BuildConfiguration : public ProjectConfiguration
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-09-21 15:50:27 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
public:
|
2009-11-23 12:11:48 +01:00
|
|
|
// ctors are protected
|
|
|
|
|
virtual ~BuildConfiguration();
|
|
|
|
|
|
2009-11-25 18:50:20 +01:00
|
|
|
virtual QString buildDirectory() const = 0;
|
|
|
|
|
|
2012-05-03 16:10:00 +02:00
|
|
|
// Maybe the BuildConfiguration is not the best place for the environment
|
2010-09-23 10:35:23 +02:00
|
|
|
virtual Utils::Environment baseEnvironment() const;
|
2010-03-11 17:47:09 +01:00
|
|
|
QString baseEnvironmentText() const;
|
2010-09-23 10:35:23 +02:00
|
|
|
Utils::Environment environment() const;
|
|
|
|
|
void setUserEnvironmentChanges(const QList<Utils::EnvironmentItem> &diff);
|
|
|
|
|
QList<Utils::EnvironmentItem> userEnvironmentChanges() const;
|
2010-03-11 17:47:09 +01:00
|
|
|
bool useSystemEnvironment() const;
|
|
|
|
|
void setUseSystemEnvironment(bool b);
|
|
|
|
|
|
2012-03-15 17:17:40 +01:00
|
|
|
QList<Core::Id> knownStepLists() const;
|
|
|
|
|
BuildStepList *stepList(Core::Id id) const;
|
2010-07-16 14:00:41 +02:00
|
|
|
|
2010-01-18 12:11:04 +01:00
|
|
|
virtual QVariantMap toMap() const;
|
|
|
|
|
|
2010-07-07 16:32:23 +02:00
|
|
|
// Creates a suitable outputparser for custom build steps
|
2011-03-16 17:59:43 +01:00
|
|
|
// (based on the tool chain)
|
2012-05-03 16:10:00 +02:00
|
|
|
// this is not great API
|
2010-07-07 16:32:23 +02:00
|
|
|
// it's mainly so that custom build systems are better integrated
|
|
|
|
|
// with the generic project manager
|
|
|
|
|
virtual IOutputParser *createOutputParser() const = 0;
|
|
|
|
|
|
2010-07-16 14:00:41 +02:00
|
|
|
Target *target() const;
|
|
|
|
|
|
2011-01-19 15:46:01 +01:00
|
|
|
virtual bool isEnabled() const;
|
2011-05-26 15:56:36 +02:00
|
|
|
virtual QString disabledReason() const;
|
2011-01-19 15:46:01 +01:00
|
|
|
|
2011-08-18 13:46:52 +02:00
|
|
|
Utils::AbstractMacroExpander *macroExpander();
|
2010-11-12 17:23:55 +01:00
|
|
|
|
2011-02-01 18:36:00 +01:00
|
|
|
virtual ProjectExplorer::ToolChain *toolChain() const;
|
|
|
|
|
virtual void setToolChain(ProjectExplorer::ToolChain *tc);
|
|
|
|
|
|
2011-03-03 16:12:00 +01:00
|
|
|
enum BuildType {
|
|
|
|
|
Unknown,
|
|
|
|
|
Debug,
|
|
|
|
|
Release
|
|
|
|
|
};
|
|
|
|
|
virtual BuildType buildType() const = 0;
|
|
|
|
|
|
2009-11-25 18:50:20 +01:00
|
|
|
signals:
|
|
|
|
|
void environmentChanged();
|
|
|
|
|
void buildDirectoryChanged();
|
2011-01-19 15:46:01 +01:00
|
|
|
void enabledChanged();
|
2011-02-01 18:36:00 +01:00
|
|
|
void toolChainChanged();
|
2009-11-25 18:50:20 +01:00
|
|
|
|
2009-11-23 12:11:48 +01:00
|
|
|
protected:
|
2012-03-15 17:17:40 +01:00
|
|
|
BuildConfiguration(Target *target, const Core::Id id);
|
2010-02-08 15:50:06 +01:00
|
|
|
BuildConfiguration(Target *target, BuildConfiguration *source);
|
2010-07-16 14:00:41 +02:00
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
void cloneSteps(BuildConfiguration *source);
|
2010-01-18 12:11:04 +01:00
|
|
|
|
|
|
|
|
virtual bool fromMap(const QVariantMap &map);
|
2009-11-23 12:11:48 +01:00
|
|
|
|
2011-03-24 11:58:40 +01:00
|
|
|
private slots:
|
|
|
|
|
void handleToolChainRemovals(ProjectExplorer::ToolChain *tc);
|
|
|
|
|
void handleToolChainAddition(ProjectExplorer::ToolChain *tc);
|
2011-03-24 14:35:03 +01:00
|
|
|
void handleToolChainUpdates(ProjectExplorer::ToolChain*);
|
2011-03-24 11:58:40 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
private:
|
2010-03-11 17:47:09 +01:00
|
|
|
bool m_clearSystemEnvironment;
|
2010-09-23 10:35:23 +02:00
|
|
|
QList<Utils::EnvironmentItem> m_userEnvironmentChanges;
|
2010-07-16 14:00:41 +02:00
|
|
|
QList<BuildStepList *> m_stepLists;
|
2011-02-01 18:36:00 +01:00
|
|
|
ToolChain *m_toolChain;
|
2011-08-18 13:46:52 +02:00
|
|
|
Utils::AbstractMacroExpander *m_macroExpander;
|
2008-12-02 12:01:29 +01:00
|
|
|
};
|
2009-06-12 13:55:08 +02:00
|
|
|
|
2010-01-18 12:11:04 +01:00
|
|
|
class PROJECTEXPLORER_EXPORT IBuildConfigurationFactory :
|
|
|
|
|
public QObject
|
2009-09-24 16:02:02 +02:00
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2010-01-18 12:11:04 +01:00
|
|
|
explicit IBuildConfigurationFactory(QObject *parent = 0);
|
2009-09-24 16:02:02 +02:00
|
|
|
virtual ~IBuildConfigurationFactory();
|
|
|
|
|
|
2010-02-08 15:50:06 +01:00
|
|
|
// used to show the list of possible additons to a target, returns a list of types
|
2012-03-15 17:17:40 +01:00
|
|
|
virtual QList<Core::Id> availableCreationIds(Target *parent) const = 0;
|
2009-09-24 16:02:02 +02:00
|
|
|
// used to translate the types to names to display to the user
|
2012-03-15 17:17:40 +01:00
|
|
|
virtual QString displayNameForId(const Core::Id id) const = 0;
|
2009-09-24 16:02:02 +02:00
|
|
|
|
2012-03-15 17:17:40 +01:00
|
|
|
virtual bool canCreate(Target *parent, const Core::Id id) const = 0;
|
|
|
|
|
virtual BuildConfiguration *create(Target *parent, const Core::Id id) = 0;
|
2010-01-18 12:11:04 +01:00
|
|
|
// used to recreate the runConfigurations when restoring settings
|
2010-02-08 15:50:06 +01:00
|
|
|
virtual bool canRestore(Target *parent, const QVariantMap &map) const = 0;
|
|
|
|
|
virtual BuildConfiguration *restore(Target *parent, const QVariantMap &map) = 0;
|
|
|
|
|
virtual bool canClone(Target *parent, BuildConfiguration *product) const = 0;
|
|
|
|
|
virtual BuildConfiguration *clone(Target *parent, BuildConfiguration *product) = 0;
|
2009-09-30 16:54:33 +02:00
|
|
|
|
2009-09-28 17:30:11 +02:00
|
|
|
signals:
|
2010-01-07 18:17:24 +01:00
|
|
|
void availableCreationIdsChanged();
|
2009-09-24 16:02:02 +02:00
|
|
|
};
|
|
|
|
|
|
2008-12-02 16:19:05 +01:00
|
|
|
} // namespace ProjectExplorer
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-12-16 11:25:28 +01:00
|
|
|
Q_DECLARE_METATYPE(ProjectExplorer::BuildConfiguration *)
|
2009-11-24 15:36:31 +01:00
|
|
|
|
2008-12-02 16:19:05 +01:00
|
|
|
#endif // BUILDCONFIGURATION_H
|