| 262 | } |
| 263 | |
| 264 | bool cmExportBuildFileGenerator::PopulateInterfaceProperties( |
| 265 | cmGeneratorTarget const* target, ImportPropertyMap& properties) |
| 266 | { |
| 267 | this->PopulateInterfaceProperty("INTERFACE_INCLUDE_DIRECTORIES", target, |
| 268 | cmGeneratorExpression::BuildInterface, |
| 269 | properties); |
| 270 | this->PopulateInterfaceProperty("INTERFACE_LINK_DIRECTORIES", target, |
| 271 | cmGeneratorExpression::BuildInterface, |
| 272 | properties); |
| 273 | this->PopulateInterfaceProperty("INTERFACE_LINK_DEPENDS", target, |
| 274 | cmGeneratorExpression::BuildInterface, |
| 275 | properties); |
| 276 | this->PopulateInterfaceProperty("INTERFACE_SOURCES", target, |
| 277 | cmGeneratorExpression::BuildInterface, |
| 278 | properties); |
| 279 | |
| 280 | return this->PopulateInterfaceProperties( |
| 281 | target, {}, cmGeneratorExpression::BuildInterface, properties); |
| 282 | } |
nothing calls this directly
no test coverage detected