2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2009-03-10 14:20:07 +01:00
|
|
|
|
2016-02-04 13:08:13 +01:00
|
|
|
#pragma once
|
2009-03-10 14:20:07 +01:00
|
|
|
|
2018-05-09 09:48:23 +02:00
|
|
|
#include <projectexplorer/makestep.h>
|
2009-03-10 14:20:07 +01:00
|
|
|
|
|
|
|
|
namespace GenericProjectManager {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2020-02-20 15:40:25 +01:00
|
|
|
class GenericMakeStepFactory final : public ProjectExplorer::BuildStepFactory
|
2009-03-10 14:20:07 +01:00
|
|
|
{
|
2010-01-14 17:41:29 +01:00
|
|
|
public:
|
2019-07-30 13:45:05 +02:00
|
|
|
GenericMakeStepFactory();
|
2009-03-10 14:20:07 +01:00
|
|
|
};
|
|
|
|
|
|
2009-03-18 12:18:59 +01:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace GenericProjectManager
|