diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-07-10 17:59:44 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-07-10 17:59:44 +0200 |
commit | bfbb506ff1a5e87401d4aa633f0707d1238082d0 (patch) | |
tree | 97c16cc25807094a655eccb9672c4a80a90b1535 | |
parent | d7d939e1c813c3ec038fcc2a15d890db63d616ee (diff) |
Print target names instead of target files when listing targets.
-rw-r--r-- | libcppbuild.cc | 2 | ||||
-rw-r--r-- | task.cc | 5 | ||||
-rw-r--r-- | task.h | 1 | ||||
-rw-r--r-- | task_cc.cc | 5 | ||||
-rw-r--r-- | task_cc.h | 1 |
5 files changed, 13 insertions, 1 deletions
diff --git a/libcppbuild.cc b/libcppbuild.cc index 707cead..0bcbad5 100644 --- a/libcppbuild.cc +++ b/libcppbuild.cc @@ -194,7 +194,7 @@ int main(int argc, char* argv[]) { if(task->targetType() != TargetType::Object) { - std::cout << task->target() << "\n"; + std::cout << task->name() << "\n"; } } return 0; @@ -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) @@ -26,6 +26,7 @@ public: int registerDepTasks(const std::list<std::shared_ptr<Task>>& tasks); + virtual std::string name() const; bool dirty(); bool ready(); int run(); @@ -113,6 +113,11 @@ TaskCC::TaskCC(const BuildConfiguration& config, const Settings& settings, } } +std::string TaskCC::name() const +{ + return target(); +} + bool TaskCC::dirtyInner() { if(!std::filesystem::exists(sourceFile)) @@ -19,6 +19,7 @@ public: const Settings& settings, const std::string& sourceDir, const std::string& source); + std::string name() const override; bool dirtyInner() override; int runInner() override; |