2022-12-09 18:44:42 +01:00
|
|
|
// Copyright (C) 2022 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2022-12-19 16:17:36 +01:00
|
|
|
#include <projectexplorer/buildstep.h>
|
2022-12-09 18:44:42 +01:00
|
|
|
|
|
|
|
|
namespace CMakeProjectManager::Internal {
|
|
|
|
|
|
|
|
|
|
class CMakeInstallStepFactory : public ProjectExplorer::BuildStepFactory
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
CMakeInstallStepFactory();
|
|
|
|
|
};
|
|
|
|
|
|
2022-12-19 16:17:36 +01:00
|
|
|
} // CMakeProjectManager::Internal
|