summaryrefslogtreecommitdiff
path: root/src/task_so.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/task_so.h')
-rw-r--r--src/task_so.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/task_so.h b/src/task_so.h
index abd43c4..fe5d2fd 100644
--- a/src/task_so.h
+++ b/src/task_so.h
@@ -21,7 +21,7 @@ public:
const Settings& settings,
const std::string& target,
const std::vector<std::string>& objects,
- const std::string& sourcePath);
+ const std::string& sourceDir);
virtual ~TaskSO() = default;
bool dirtyInner() override;
@@ -32,6 +32,8 @@ public:
std::vector<std::string> depends() const override;
std::string target() const override;
+ std::filesystem::path targetFile() const override;
+
bool derived() const override;
private:
@@ -39,9 +41,10 @@ private:
std::vector<std::filesystem::path> objectFiles;
std::vector<std::filesystem::path> depFiles;
- std::filesystem::path targetFile;
+ std::filesystem::path _targetFile;
std::filesystem::path flagsFile;
const BuildConfiguration& config;
const Settings& settings;
+ std::string sourceDir;
};