| 526 | } |
| 527 | |
| 528 | bool HandleVariableMode(cmExecutionStatus& status, std::string const& name, |
| 529 | OutType infoType, std::string const& variable, |
| 530 | std::string const& propertyName) |
| 531 | { |
| 532 | if (!name.empty()) { |
| 533 | status.SetError("given name for VARIABLE scope."); |
| 534 | return false; |
| 535 | } |
| 536 | |
| 537 | return StoreResult(infoType, status.GetMakefile(), variable, |
| 538 | status.GetMakefile().GetDefinition(propertyName)); |
| 539 | } |
| 540 | |
| 541 | bool HandleCacheMode(cmExecutionStatus& status, std::string const& name, |
| 542 | OutType infoType, std::string const& variable, |
no test coverage detected
searching dependent graphs…