| 2576 | } |
| 2577 | |
| 2578 | void cmLocalGenerator::AppendFlagEscape(std::string& flags, |
| 2579 | std::string const& rawFlag) const |
| 2580 | { |
| 2581 | this->AppendFlags( |
| 2582 | flags, |
| 2583 | this->EscapeForShell(rawFlag, false, false, false, this->IsNinjaMulti())); |
| 2584 | } |
| 2585 | |
| 2586 | void cmLocalGenerator::AppendLinkFlagsWithParsing( |
| 2587 | std::string& flags, std::string const& newFlags, |
no test coverage detected