diff options
Diffstat (limited to 'task_ar.cc')
-rw-r--r-- | task_ar.cc | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -178,11 +178,22 @@ std::string TaskAR::flagsString() const std::string flagsStr; for(const auto& flag : config.ldflags) { - if(!flagsStr.empty()) + if(flag != config.ldflags[0]) { flagsStr += " "; } flagsStr += flag; } + flagsStr += "\n"; + + for(const auto& dep : config.depends) + { + if(dep != config.depends[0]) + { + flagsStr += " "; + } + flagsStr += dep; + } + return flagsStr; } |