diff options
author | Stephen Kelly <steveire@gmail.com> | 2012-10-06 15:51:07 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-07-27 19:59:03 (GMT) |
commit | 57f03e59ba92989aaf3600399f11ffb308cc663e (patch) | |
tree | fd6649c99b9153d7edd67d5444d8007720b37fba /Source/cmExportBuildFileGenerator.cxx | |
parent | 57ab0f70b50e8c308f12248494fcc233e83210a4 (diff) | |
download | CMake-57f03e59ba92989aaf3600399f11ffb308cc663e.zip CMake-57f03e59ba92989aaf3600399f11ffb308cc663e.tar.gz CMake-57f03e59ba92989aaf3600399f11ffb308cc663e.tar.bz2 |
Port some of the cmExportFileGenerator API to cmGeneratorTarget.
Enough to make it more possible to move GetLinkInterface
to cmGeneratorTarget.
Diffstat (limited to 'Source/cmExportBuildFileGenerator.cxx')
-rw-r--r-- | Source/cmExportBuildFileGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmExportBuildFileGenerator.cxx b/Source/cmExportBuildFileGenerator.cxx index d02a39b..355fc00 100644 --- a/Source/cmExportBuildFileGenerator.cxx +++ b/Source/cmExportBuildFileGenerator.cxx @@ -148,11 +148,11 @@ cmExportBuildFileGenerator if (target->GetType() != cmTarget::INTERFACE_LIBRARY) { this->SetImportDetailProperties(config, suffix, - target->Target, + target, properties, missingTargets); this->SetImportLinkInterface(config, suffix, cmGeneratorExpression::BuildInterface, - target->Target, + target, properties, missingTargets); } |