aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/sysrootkitaspect.h
blob: 86dcb390a21e8882f345849ac2fab1f4de3570e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (C) 2024 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_export.h"

namespace Utils {
class FilePath;
class Id;
} // namespace Utils

namespace ProjectExplorer {
class Kit;

class PROJECTEXPLORER_EXPORT SysRootKitAspect
{
public:
    static Utils::Id id();
    static Utils::FilePath sysRoot(const Kit *k);
    static void setSysRoot(Kit *k, const Utils::FilePath &v);
};

} // namespace ProjectExplorer