| 336 | } |
| 337 | |
| 338 | bool cmCustomCommandGenerator::HasOnlyEmptyCommandLines() const |
| 339 | { |
| 340 | for (cmCustomCommandLine const& ccl : this->CommandLines) { |
| 341 | for (std::string const& cl : ccl) { |
| 342 | if (!cl.empty()) { |
| 343 | return false; |
| 344 | } |
| 345 | } |
| 346 | } |
| 347 | return true; |
| 348 | } |
| 349 | |
| 350 | std::string cmCustomCommandGenerator::GetCommand(unsigned int c) const |
| 351 | { |
no test coverage detected