| 6 | #include "cmMakefile.h" |
| 7 | |
| 8 | bool cmAddLinkOptionsCommand(std::vector<std::string> const& args, |
| 9 | cmExecutionStatus& status) |
| 10 | { |
| 11 | cmMakefile& mf = status.GetMakefile(); |
| 12 | for (std::string const& i : args) { |
| 13 | mf.AddLinkOption(i); |
| 14 | } |
| 15 | return true; |
| 16 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…