blob: fd4e9ea4e049b55af20569fc58c62b7bee43fb51 (
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) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <utils/environmentfwd.h>
#include <utils/namevaluedictionary.h>
namespace ProjectExplorer { class Kit; }
namespace Utils { class Id; }
namespace McuSupport::Internal {
class McuDependenciesKitAspect final
{
public:
static Utils::Id id();
static Utils::EnvironmentItems dependencies(const ProjectExplorer::Kit *kit);
static void setDependencies(ProjectExplorer::Kit *kit, const Utils::EnvironmentItems &dependencies);
static Utils::NameValuePairs configuration(const ProjectExplorer::Kit *kit);
};
} // McuSupport::Internal
|