forked from qt-creator/qt-creator
Change-Id: Id2facedde38dd09311069711b9e621a95439d433 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
24 lines
672 B
C++
24 lines
672 B
C++
// 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
|