| 325 | } |
| 326 | |
| 327 | void cmGlobalNinjaGenerator::AddCustomCommandRule() |
| 328 | { |
| 329 | cmNinjaRule rule("CUSTOM_COMMAND"); |
| 330 | rule.Command = "$COMMAND"; |
| 331 | rule.Description = "$DESC"; |
| 332 | rule.Comment = "Rule for running custom commands."; |
| 333 | this->AddRule(rule); |
| 334 | } |
| 335 | |
| 336 | void cmGlobalNinjaGenerator::CCOutputs::Add( |
| 337 | std::vector<std::string> const& paths) |
no test coverage detected