blob: 4cb3956a9ea2f3657f055c13caa780ec324b4597 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "commandbuilder.h"
namespace IncrediBuild::Internal {
class MakeCommandBuilder final : public CommandBuilder
{
public:
MakeCommandBuilder(ProjectExplorer::BuildStep *buildStep) : CommandBuilder(buildStep) {}
private:
QList<Utils::Id> migratableSteps() const final;
QString id() const final { return "MakeCommandBuilder"; }
QString displayName() const final;
Utils::FilePath defaultCommand() const final;
QString setMultiProcessArg(QString args) final;
};
} // IncrediBuild::Internal
|