blob: 3a80a560778547eda8f1940a5dbb17ddeb756cdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// 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 <projectexplorer/buildstep.h>
namespace QbsProjectManager::Internal {
class QbsBuildConfiguration;
class QbsBuildStepData;
class QbsInstallStep final : public ProjectExplorer::BuildStep
{
Q_OBJECT
public:
QbsInstallStep(ProjectExplorer::BuildStepList *bsl, Utils::Id id);
Utils::FilePath installRoot() const;
private:
bool init() override;
Tasking::GroupItem runRecipe() final;
QWidget *createConfigWidget() override;
const QbsBuildConfiguration *buildConfig() const;
Utils::BoolAspect cleanInstallRoot{this};
Utils::BoolAspect dryRun{this};
Utils::BoolAspect keepGoing{this};
friend class QbsInstallStepConfigWidget;
};
class QbsInstallStepFactory : public ProjectExplorer::BuildStepFactory
{
public:
QbsInstallStepFactory();
};
} // namespace QbsProjectManager::Internal
|