summaryrefslogtreecommitdiff
path: root/src/task_fn.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2025-12-20 15:43:47 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2025-12-20 15:43:47 +0100
commitf6bcdf67b1b981592825d6a6a1c4d3ff122de553 (patch)
tree174c30fb550768ec017b209b5215c66828358279 /src/task_fn.h
parent7b6b7df83870c81a3f45107701ddbe52b83f91ab (diff)
Diffstat (limited to 'src/task_fn.h')
-rw-r--r--src/task_fn.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/task_fn.h b/src/task_fn.h
index 1bad32c..7740f9e 100644
--- a/src/task_fn.h
+++ b/src/task_fn.h
@@ -28,6 +28,7 @@ public:
std::string target() const override;
std::filesystem::path targetFile() const override;
+ std::string sourceListString() const;
bool derived() const override;
std::string toJSON() const override;
@@ -37,8 +38,11 @@ public:
protected:
std::filesystem::path sourceFile;
std::filesystem::path _targetFile;
+ std::filesystem::path sourceListFile;
const ctor::build_configuration& config;
const ctor::settings& settings;
std::filesystem::path sourceDir;
+
+ std::vector<std::string> sources;
};