blob: 215e55d83186c5fa037085775e4a18ee08ec35d4 (
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
|
// 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 <projectexplorer/buildconfiguration.h>
#include <projectexplorer/projectnodes.h>
#include <projectexplorer/treescanner.h>
#include <utils/filesystemwatcher.h>
namespace Nim {
class NimBuildSystem;
class NimBuildConfiguration : public ProjectExplorer::BuildConfiguration
{
Q_OBJECT
friend class ProjectExplorer::BuildConfigurationFactory;
NimBuildConfiguration(ProjectExplorer::Target *target, Utils::Id id);
public:
Utils::FilePath cacheDirectory() const;
Utils::FilePath outFilePath() const;
};
Utils::FilePath nimPathFromKit(ProjectExplorer::Kit *kit);
Utils::FilePath nimblePathFromKit(ProjectExplorer::Kit *kit);
class NimProjectScanner : public QObject
{
Q_OBJECT
public:
explicit NimProjectScanner(ProjectExplorer::Project *project);
void startScan();
void watchProjectFilePath();
void setExcludedFiles(const Utils::FilePaths &list);
Utils::FilePaths excludedFiles() const;
bool addFiles(const Utils::FilePaths &filePaths);
ProjectExplorer::RemovedFilesFromProject removeFiles(const Utils::FilePaths &filePaths);
bool renameFile(const Utils::FilePath &from, const Utils::FilePath &to);
signals:
void finished();
void requestReparse();
void directoryChanged(const Utils::FilePath &path);
void fileChanged(const Utils::FilePath &path);
private:
void loadSettings();
void saveSettings();
ProjectExplorer::Project *m_project = nullptr;
ProjectExplorer::TreeScanner m_scanner;
Utils::FileSystemWatcher m_directoryWatcher;
};
void setupNimProject();
} // Nim
|