summaryrefslogtreecommitdiff
path: root/src/task_fn.h
diff options
context:
space:
mode:
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;
};