diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-07 22:51:05 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-12 16:39:58 (GMT) |
commit | 7c8236efa710372b6e54ba12934b075f718e0e15 (patch) | |
tree | 5114fea64f9f829604fa681a9d9c9e1e2929f4f0 /Source/cmComputeLinkInformation.h | |
parent | c7645fca12870cef732f26730588cda3be072852 (diff) | |
download | CMake-7c8236efa710372b6e54ba12934b075f718e0e15.zip CMake-7c8236efa710372b6e54ba12934b075f718e0e15.tar.gz CMake-7c8236efa710372b6e54ba12934b075f718e0e15.tar.bz2 |
cmComputeLinkInformation: Port result API to cmGeneratorTarget.
Diffstat (limited to 'Source/cmComputeLinkInformation.h')
-rw-r--r-- | Source/cmComputeLinkInformation.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/cmComputeLinkInformation.h b/Source/cmComputeLinkInformation.h index 2aac1bc..5eecf7d 100644 --- a/Source/cmComputeLinkInformation.h +++ b/Source/cmComputeLinkInformation.h @@ -19,7 +19,6 @@ class cmake; class cmGlobalGenerator; class cmMakefile; -class cmTarget; class cmGeneratorTarget; class cmOrderDirectories; @@ -57,7 +56,7 @@ public: void GetRPath(std::vector<std::string>& runtimeDirs, bool for_install); std::string GetRPathString(bool for_install); std::string GetChrpathString(); - std::set<cmTarget const*> const& GetSharedLibrariesLinked(); + std::set<cmGeneratorTarget const*> const& GetSharedLibrariesLinked(); std::string const& GetRPathLinkFlag() const { return this->RPathLinkFlag; } std::string GetRPathLinkString(); @@ -71,7 +70,7 @@ private: std::vector<std::string> Depends; std::vector<std::string> FrameworkPaths; std::vector<std::string> RuntimeSearchPath; - std::set<cmTarget const*> SharedLibrariesLinked; + std::set<cmGeneratorTarget const*> SharedLibrariesLinked; // Context information. cmGeneratorTarget const* Target; |