diff options
Diffstat (limited to 'task.cc')
-rw-r--r-- | task.cc | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -35,6 +35,11 @@ int Task::registerDepTasks(const std::list<std::shared_ptr<Task>>& tasks) return 0; } +std::string Task::name() const +{ + return config.target; +} + bool Task::dirty() { for(const auto& task : dependsTasks) |