blob: 60af225f1f24dd1081b482ee32ea20e3542e8380 (
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
|
// -*- 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>
class TaskSO
: public Task
{
public:
TaskSO(const ctor::build_configuration& config,
const ctor::settings& settings,
const std::string& target,
const std::vector<std::string>& objects,
const std::string& sourceDir);
virtual ~TaskSO() = default;
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;
private:
std::string flagsString() const;
std::vector<std::filesystem::path> objectFiles;
std::vector<std::filesystem::path> depFiles;
std::filesystem::path _targetFile;
std::filesystem::path flagsFile;
const ctor::build_configuration& config;
const ctor::settings& settings;
std::string sourceDir;
};
|