| 477 | } |
| 478 | |
| 479 | bool cmSourceFile::GetIsGenerated(CheckScope checkScope) const |
| 480 | { |
| 481 | if (this->IsGenerated) { |
| 482 | // Globally marked as generated! |
| 483 | return true; |
| 484 | } |
| 485 | if (checkScope == CheckScope::GlobalAndLocal) { |
| 486 | // Check locally stored properties. |
| 487 | return this->GetPropertyAsBool(propGENERATED); |
| 488 | } |
| 489 | return false; |
| 490 | } |
| 491 | |
| 492 | void cmSourceFile::SetProperties(cmPropertyMap properties) |
| 493 | { |
no test coverage detected