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

	int run();
	int clean();

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

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

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