forked from qt-creator/qt-creator
Change-Id: Id4ac0cdaa3a773f740f474e78a7af104996a5504 Reviewed-by: Cristian Adam <cristian.adam@qt.io>
132 lines
3.8 KiB
C++
132 lines
3.8 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include "cmakeabstractprocessstep.h"
|
|
#include <utils/treemodel.h>
|
|
|
|
namespace Utils {
|
|
class CommandLine;
|
|
class StringAspect;
|
|
} // Utils
|
|
|
|
namespace CMakeProjectManager::Internal {
|
|
|
|
class CMakeBuildStep;
|
|
|
|
class CMakeTargetItem : public Utils::TreeItem
|
|
{
|
|
public:
|
|
CMakeTargetItem() = default;
|
|
CMakeTargetItem(const QString &target, CMakeBuildStep *step, bool special);
|
|
|
|
private:
|
|
QVariant data(int column, int role) const final;
|
|
bool setData(int column, const QVariant &data, int role) final;
|
|
Qt::ItemFlags flags(int column) const final;
|
|
|
|
QString m_target;
|
|
CMakeBuildStep *m_step = nullptr;
|
|
bool m_special = false;
|
|
};
|
|
|
|
class CMakeBuildStep : public CMakeAbstractProcessStep
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
CMakeBuildStep(ProjectExplorer::BuildStepList *bsl, Utils::Id id);
|
|
|
|
QStringList buildTargets() const;
|
|
void setBuildTargets(const QStringList &target);
|
|
|
|
bool buildsBuildTarget(const QString &target) const;
|
|
void setBuildsBuildTarget(const QString &target, bool on);
|
|
|
|
QVariantMap toMap() const override;
|
|
|
|
QString cleanTarget() const;
|
|
QString allTarget() const ;
|
|
QString installTarget() const;
|
|
static QStringList specialTargets(bool allCapsTargets);
|
|
|
|
QString activeRunConfigTarget() const;
|
|
|
|
void setBuildPreset(const QString &preset);
|
|
|
|
Utils::Environment environment() const;
|
|
void setUserEnvironmentChanges(const Utils::EnvironmentItems &diff);
|
|
Utils::EnvironmentItems userEnvironmentChanges() const;
|
|
bool useClearEnvironment() const;
|
|
void setUseClearEnvironment(bool b);
|
|
void updateAndEmitEnvironmentChanged();
|
|
|
|
Utils::Environment baseEnvironment() const;
|
|
QString baseEnvironmentText() const;
|
|
|
|
void setCMakeArguments(const QStringList &cmakeArguments);
|
|
void setToolArguments(const QStringList &nativeToolArguments);
|
|
|
|
void setConfiguration(const QString &configuration);
|
|
|
|
signals:
|
|
void buildTargetsChanged();
|
|
void environmentChanged();
|
|
|
|
private:
|
|
Utils::CommandLine cmakeCommand() const;
|
|
|
|
void finish(Utils::ProcessResult result) override;
|
|
bool fromMap(const QVariantMap &map) override;
|
|
|
|
bool init() override;
|
|
void setupOutputFormatter(Utils::OutputFormatter *formatter) override;
|
|
void doRun() override;
|
|
QWidget *createConfigWidget() override;
|
|
|
|
Utils::FilePath cmakeExecutable() const;
|
|
QString currentInstallPrefix() const;
|
|
QString currentStagingDir() const;
|
|
|
|
QString defaultBuildTarget() const;
|
|
bool isCleanStep() const;
|
|
|
|
void runImpl();
|
|
void handleProjectWasParsed(bool success);
|
|
|
|
void handleBuildTargetsChanges(bool success);
|
|
void recreateBuildTargetsModel();
|
|
void updateBuildTargetsModel();
|
|
void updateDeploymentData();
|
|
|
|
QMetaObject::Connection m_runTrigger;
|
|
|
|
friend class CMakeBuildStepConfigWidget;
|
|
QStringList m_buildTargets; // Convention: Empty string member signifies "Current executable"
|
|
Utils::StringAspect *m_cmakeArguments = nullptr;
|
|
Utils::StringAspect *m_toolArguments = nullptr;
|
|
Utils::BoolAspect *m_useiOSAutomaticProvisioningUpdates = nullptr;
|
|
Utils::BoolAspect *m_useStaging = nullptr;
|
|
Utils::FilePathAspect *m_stagingDir = nullptr;
|
|
|
|
QString m_allTarget = "all";
|
|
QString m_installTarget = "install";
|
|
|
|
Utils::TreeModel<Utils::TreeItem, CMakeTargetItem> m_buildTargetModel;
|
|
|
|
Utils::Environment m_environment;
|
|
Utils::EnvironmentItems m_userEnvironmentChanges;
|
|
bool m_clearSystemEnvironment = false;
|
|
QString m_buildPreset;
|
|
std::optional<QString> m_configuration;
|
|
};
|
|
|
|
class CMakeBuildStepFactory : public ProjectExplorer::BuildStepFactory
|
|
{
|
|
public:
|
|
CMakeBuildStepFactory();
|
|
};
|
|
|
|
} // CMakeProjectManager::Internal
|