diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-10-24 18:45:17 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-10-24 19:08:38 +0200 |
commit | 7bf162fcd98920644e4f61ac0181037eb62c807e (patch) | |
tree | a794bd89574d7aaa88e7caff0d507b9c3e145d6d /src/task_cc.cc | |
parent | c0eacf8e85003844b95e71b9004fa464d4586a38 (diff) |
Fix compilation of named targets and print notification when re-compiling config.
Diffstat (limited to 'src/task_cc.cc')
-rw-r--r-- | src/task_cc.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/task_cc.cc b/src/task_cc.cc index e4bd7aa..a9be475 100644 --- a/src/task_cc.cc +++ b/src/task_cc.cc @@ -213,6 +213,11 @@ std::string TaskCC::target() const return targetFile.string(); } +bool TaskCC::derived() const +{ + return true; +} + std::string TaskCC::toJSON() const { std::string json; |