| 582 | } |
| 583 | |
| 584 | void cmCacheManager::CacheEntry::SetProperty(std::string const& prop, |
| 585 | std::string const& value) |
| 586 | { |
| 587 | if (prop == "TYPE") { |
| 588 | this->Type = cmState::StringToCacheEntryType(value); |
| 589 | } else if (prop == "VALUE") { |
| 590 | this->Value = value; |
| 591 | } else { |
| 592 | this->Properties.SetProperty(prop, value); |
| 593 | } |
| 594 | } |
| 595 | |
| 596 | void cmCacheManager::CacheEntry::SetProperty(std::string const& p, bool v) |
| 597 | { |
no outgoing calls
no test coverage detected