blob: 709f23867049cc3ece8d28cd3bc5c1fc5a807b8f (
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
|
// -*- c++ -*-
#pragma once
#include "task.h"
#include <vector>
#include <string>
#include <future>
#include <filesystem>
struct BuildConfiguration;
struct Settings;
class TaskLD
: public Task
{
public:
TaskLD(const BuildConfiguration& config,
const Settings& settings,
const std::string& target,
const std::vector<std::string>& objects);
bool dirty() override;
int run() override;
int clean() override;
std::vector<std::string> depends() const override;
std::string target() const override;
private:
std::vector<std::filesystem::path> objectFiles;
std::filesystem::path targetFile;
const BuildConfiguration& config;
const Settings& settings;
};
|