diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2022-06-08 17:38:01 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2022-06-09 22:28:32 +0200 |
commit | 7a16146600384272baf7fb2fc0fc64f59b17ffe9 (patch) | |
tree | 755df6191525a49862d957dc120dcbabcbb03f39 /src/task_cc.h | |
parent | 69d6df33bf7fabe62cdcd61bcd7ebc20b6de6b67 (diff) |
Function target type including support for generated sources.
Diffstat (limited to 'src/task_cc.h')
-rw-r--r-- | src/task_cc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/task_cc.h b/src/task_cc.h index 26c81a4..0a0d96a 100644 --- a/src/task_cc.h +++ b/src/task_cc.h @@ -22,6 +22,8 @@ public: const std::string& sourceDir, const Source& source); virtual ~TaskCC() = default; + int registerDepTasksInner(const std::set<std::shared_ptr<Task>>& tasks) override; + std::string name() const override; bool dirtyInner() override; @@ -52,4 +54,5 @@ protected: const BuildConfiguration& config; const Settings& settings; std::filesystem::path sourceDir; + const Source& _source; }; |