blob: 052afc6b9b32d5c57799a6a84c4cf121e9679303 (
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
43
|
// Copyright (C) 2020 Alexis Jeandet.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "ninjaparser.h"
#include <projectexplorer/abstractprocessstep.h>
#include <projectexplorer/buildstep.h>
namespace MesonProjectManager::Internal {
class NinjaBuildStep final : public ProjectExplorer::AbstractProcessStep
{
Q_OBJECT
public:
NinjaBuildStep(ProjectExplorer::BuildStepList *bsl, Utils::Id id);
QWidget *createConfigWidget() final;
Utils::CommandLine command();
QStringList projectTargets();
void setBuildTarget(const QString &targetName);
void setCommandArgs(const QString &args);
const QString &targetName() const { return m_targetName; }
Q_SIGNAL void targetListChanged();
Q_SIGNAL void commandChanged();
void toMap(Utils::Store &map) const override;
void fromMap(const Utils::Store &map) override;
private:
void update(bool parsingSuccessful);
void setupOutputFormatter(Utils::OutputFormatter *formatter) override;
QString defaultBuildTarget() const;
QString m_commandArgs;
QString m_targetName;
NinjaParser *m_ninjaParser = nullptr;
};
void setupNinjaBuildStep();
} // MesonProjectManager::Internal
|