blob: fc1cdb5ef061b77cb9c6569f918b4758758eb76b (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
// Copyright (C) Filippo Cucchetto <filippocucchetto@gmail.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "nimproject.h"
#include <projectexplorer/buildsystem.h>
#include <projectexplorer/project.h>
namespace Nim {
struct NimbleTask
{
QString name;
QString description;
bool operator==(const NimbleTask &o) const {
return name == o.name && description == o.description;
}
};
class NimbleBuildSystem final : public ProjectExplorer::BuildSystem
{
Q_OBJECT
public:
NimbleBuildSystem(ProjectExplorer::BuildConfiguration *bc);
~NimbleBuildSystem();
static QString name() { return "nimble"; }
std::vector<NimbleTask> tasks() const;
signals:
void tasksChanged();
private:
void loadSettings();
void saveSettings();
void updateProject();
bool supportsAction(ProjectExplorer::Node *,
ProjectExplorer::ProjectAction action,
const ProjectExplorer::Node *node) const override;
bool addFiles(ProjectExplorer::Node *node,
const Utils::FilePaths &filePaths, Utils::FilePaths *) override;
ProjectExplorer::RemovedFilesFromProject removeFiles(ProjectExplorer::Node *node,
const Utils::FilePaths &filePaths,
Utils::FilePaths *) override;
bool deleteFiles(ProjectExplorer::Node *, const Utils::FilePaths &) override;
bool renameFiles(
ProjectExplorer::Node *,
const Utils::FilePairs &filesToRename,
Utils::FilePaths *notRenamed) override;
void triggerParsing() final;
std::vector<NimbleTask> m_tasks;
NimProjectScanner m_projectScanner;
ParseGuard m_guard;
};
class NimbleProject final : public ProjectExplorer::Project
{
public:
NimbleProject(const Utils::FilePath &filename);
// Keep for compatibility with Qt Creator 4.10
void toMap(Utils::Store &map) const final;
Utils::FilePaths excludedFiles() const;
void setExcludedFiles(const Utils::FilePaths &excludedFiles);
protected:
// Keep for compatibility with Qt Creator 4.10
RestoreResult fromMap(const Utils::Store &map, QString *errorMessage) final;
Utils::FilePaths m_excludedFiles;
};
void setupNimbleProject();
} // Nim
|