summaryrefslogtreecommitdiff
path: root/task.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2021-07-10 17:59:44 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2021-07-10 17:59:44 +0200
commitbfbb506ff1a5e87401d4aa633f0707d1238082d0 (patch)
tree97c16cc25807094a655eccb9672c4a80a90b1535 /task.cc
parentd7d939e1c813c3ec038fcc2a15d890db63d616ee (diff)
Print target names instead of target files when listing targets.
Diffstat (limited to 'task.cc')
-rw-r--r--task.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/task.cc b/task.cc
index 5a08a47..8c48543 100644
--- a/task.cc
+++ b/task.cc
@@ -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)