diff options
author | Brad King <brad.king@kitware.com> | 2009-07-07 13:45:29 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-07-07 13:45:29 (GMT) |
commit | 34f78ee552694e95e20a312869632da06cbd1569 (patch) | |
tree | bb988444096af8d03c12117b3493b3e69971f9b4 /Source/cmExportFileGenerator.cxx | |
parent | a60846718048e33db01e7993ba7d6fa994e0c8b5 (diff) | |
download | CMake-34f78ee552694e95e20a312869632da06cbd1569.zip CMake-34f78ee552694e95e20a312869632da06cbd1569.tar.gz CMake-34f78ee552694e95e20a312869632da06cbd1569.tar.bz2 |
ENH: Simplify cmTarget link interface storage
This makes the LinkInterface struct a member of cmTarget, pimplizes the
config-to-interface map, and stores interface instances by value.
Diffstat (limited to 'Source/cmExportFileGenerator.cxx')
-rw-r--r-- | Source/cmExportFileGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmExportFileGenerator.cxx b/Source/cmExportFileGenerator.cxx index f231e33..9c603c1 100644 --- a/Source/cmExportFileGenerator.cxx +++ b/Source/cmExportFileGenerator.cxx @@ -150,7 +150,7 @@ cmExportFileGenerator } // Add the transitive link dependencies for this configuration. - if(cmTargetLinkInterface const* iface = target->GetLinkInterface(config)) + if(cmTarget::LinkInterface const* iface = target->GetLinkInterface(config)) { this->SetImportLinkProperty(suffix, target, "IMPORTED_LINK_INTERFACE_LIBRARIES", |