blob: f014a6858ac5ebc525deb75a632a09da07ed0816 (
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 Alexis Jeandet.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "mesontools.h"
namespace ProjectExplorer { class Kit; }
namespace MesonProjectManager::Internal {
class MesonToolKitAspect final
{
public:
static void setMesonTool(ProjectExplorer::Kit *kit, Utils::Id id);
static Utils::Id mesonToolId(const ProjectExplorer::Kit *kit);
static bool isValid(const ProjectExplorer::Kit *kit);
static std::shared_ptr<MesonToolWrapper> mesonTool(const ProjectExplorer::Kit *kit);
};
} // MesonProjectManager::Internal
|