summaryrefslogtreecommitdiff
path: root/task.h
blob: bdd881b159d22c933e337e0fbf75cb9991e35b95 (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
// -*- 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);

	bool dirty();

	int run();
	int clean();

	std::vector<std::string> depends() const;

	std::string target() const;

private:
	std::filesystem::path sourceFile;
	std::filesystem::path targetFile;
	std::filesystem::path depsFile;

	const BuildConfiguration& config;
	const Settings& settings;
};