| 140 | } |
| 141 | |
| 142 | void cmExportFileGenerator::PopulateInterfaceProperty( |
| 143 | std::string const& propName, cmGeneratorTarget const* target, |
| 144 | ImportPropertyMap& properties) const |
| 145 | { |
| 146 | cmValue input = target->GetProperty(propName); |
| 147 | if (input) { |
| 148 | properties[propName] = *input; |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | void cmExportFileGenerator::PopulateInterfaceProperty( |
| 153 | std::string const& propName, std::string const& outputName, |
no test coverage detected