blob: 0a0d96a47c4157444d142d69cd6759853fddbd96 (
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
|
// -*- c++ -*-
// Distributed under the BSD 2-Clause License.
// See accompanying file LICENSE for details.
#pragma once
#include "task.h"
#include <vector>
#include <string>
#include <future>
#include <filesystem>
struct BuildConfiguration;
struct Settings;
class TaskCC
: public Task
{
public:
TaskCC(const BuildConfiguration& config,
const Settings& settings,
const std::string& sourceDir, const Source& source);
virtual ~TaskCC() = default;
int registerDepTasksInner(const std::set<std::shared_ptr<Task>>& tasks) override;
std::string name() const override;
bool dirtyInner() override;
int runInner() override;
int clean() override;
std::vector<std::string> depends() const override;
std::string target() const override;
std::filesystem::path targetFile() const override;
bool derived() const override;
std::string toJSON() const override;
std::string source() const override;
protected:
std::vector<std::string> flags() const;
std::string flagsString() const;
std::vector<std::string> getCompilerArgs() const;
std::filesystem::path sourceFile;
std::filesystem::path _targetFile;
std::filesystem::path depsFile;
std::filesystem::path flagsFile;
const BuildConfiguration& config;
const Settings& settings;
std::filesystem::path sourceDir;
const Source& _source;
};
|