aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/mcusupport/mcukitaspect.h
blob: 462562134886a4f74f01d148a3fead7c4b2b9d2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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 <projectexplorer/kitaspects.h>

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