| 441 | } |
| 442 | |
| 443 | static void NinjaSafeComment(std::string& comment) |
| 444 | { |
| 445 | // Replace control characters in comments. |
| 446 | cmSystemTools::ReplaceString(comment, "\n", " / "); |
| 447 | cmSystemTools::ReplaceString(comment, "$", "$$"); |
| 448 | } |
| 449 | |
| 450 | void cmNinjaNormalTargetGenerator::WriteLinkRule( |
| 451 | bool useResponseFile, std::string const& config, |
no outgoing calls
no test coverage detected
searching dependent graphs…