diff options
Diffstat (limited to 'src/task_so.cc')
-rw-r--r-- | src/task_so.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/task_so.cc b/src/task_so.cc index 96fa1a3..5aa5723 100644 --- a/src/task_so.cc +++ b/src/task_so.cc @@ -198,5 +198,12 @@ std::string TaskSO::flagsString() const flagsStr += dep; } + auto deps = depends(); + for(const auto& dep : deps) + { + flagsStr += " "; + flagsStr += dep; + } + return flagsStr; } |