blob: d7886454646d3b4d4fc62282ff7ad06be198ec02 (
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
 | // -*- c++ -*-
#pragma once
#include <vector>
#include <string>
#include <future>
#include <filesystem>
struct BuildConfiguration;
struct Settings;
class Task
{
public:
	Task(const BuildConfiguration& config,
	     const Settings& settings,
	     const std::string& source);
	void start();
	int wait();
	int clean();
	std::vector<std::string> depends();
	std::filesystem::path sourceFile;
	std::filesystem::path targetFile;
	std::filesystem::path depsFile;
	std::future<int> future;
};
 |