forked from qt-creator/qt-creator
Change-Id: I10a600b601301283dbdc960d9e07e5587b52c031 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
17 lines
414 B
C++
17 lines
414 B
C++
// 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 <projectexplorer/runconfiguration.h>
|
|
|
|
namespace MesonProjectManager::Internal {
|
|
|
|
class MesonRunConfigurationFactory final : public ProjectExplorer::RunConfigurationFactory
|
|
{
|
|
public:
|
|
MesonRunConfigurationFactory();
|
|
};
|
|
|
|
} // MesonProjectManager::Internal
|