diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-05 15:37:48 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-26 17:46:31 (GMT) |
commit | 3846ebcf2b60b73e3eec848bd3dd41711eac5dc4 (patch) | |
tree | 2e994122916c4d1285b4e1a19bc2da14ec30b406 /Source/cmTarget.cxx | |
parent | a7f5d70dde50ac74726f3c23d276d2fdac70d659 (diff) | |
download | CMake-3846ebcf2b60b73e3eec848bd3dd41711eac5dc4.zip CMake-3846ebcf2b60b73e3eec848bd3dd41711eac5dc4.tar.gz CMake-3846ebcf2b60b73e3eec848bd3dd41711eac5dc4.tar.bz2 |
cmLinkItem: Add cmLinkImplementation type.
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index ea03ffe..c007994 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -96,7 +96,7 @@ public: ImportInfoMapType ImportInfoMap; // Cache link implementation computation from each configuration. - struct OptionalLinkImplementation: public cmTarget::LinkImplementation + struct OptionalLinkImplementation: public cmLinkImplementation { OptionalLinkImplementation(): LibrariesDone(false), LanguagesDone(false), @@ -3584,7 +3584,7 @@ void cmTargetInternals::AddInterfaceEntries( } //---------------------------------------------------------------------------- -cmTarget::LinkImplementation const* +const cmLinkImplementation * cmTarget::GetLinkImplementation(const std::string& config) const { // There is no link implementation for imported targets. |