aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/mesonprojectmanager/machinefiles/machinefilemanager.h
blob: 12cd8f1a2e6062188e0dcc467d4a8f0961f5ec88 (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
25
26
27
28
29
30
// Copyright (C) 2020 Alexis Jeandet.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include <projectexplorer/kit.h>
#include <projectexplorer/kitmanager.h>

#include <utils/fileutils.h>

namespace MesonProjectManager {
namespace Internal {

class MachineFileManager final : public QObject
{
    Q_OBJECT
public:
    MachineFileManager();

    static Utils::FilePath machineFile(const ProjectExplorer::Kit *kit);

private:
    void addMachineFile(const ProjectExplorer::Kit *kit);
    void removeMachineFile(const ProjectExplorer::Kit *kit);
    void updateMachineFile(const ProjectExplorer::Kit *kit);
    void cleanupMachineFiles();
};

} // namespace Internal
} // namespace MesonProjectManager