diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-04 17:19:50 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-05 16:20:49 (GMT) |
commit | c93230ac3838231f2f44986e224da1bdaf9a7dfe (patch) | |
tree | a3436e3f2aee006db5d25c7ba4849012cac863b2 /Source/cmComputeLinkInformation.h | |
parent | ee26add4f4062d8b53f22e161027a573dc03399c (diff) | |
download | CMake-c93230ac3838231f2f44986e224da1bdaf9a7dfe.zip CMake-c93230ac3838231f2f44986e224da1bdaf9a7dfe.tar.gz CMake-c93230ac3838231f2f44986e224da1bdaf9a7dfe.tar.bz2 |
cmComputeLinkInformation: Port to cmGeneratorTarget.
Diffstat (limited to 'Source/cmComputeLinkInformation.h')
-rw-r--r-- | Source/cmComputeLinkInformation.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmComputeLinkInformation.h b/Source/cmComputeLinkInformation.h index 2d7a5a5..8b83574 100644 --- a/Source/cmComputeLinkInformation.h +++ b/Source/cmComputeLinkInformation.h @@ -29,7 +29,8 @@ class cmOrderDirectories; class cmComputeLinkInformation { public: - cmComputeLinkInformation(cmTarget const* target, const std::string& config); + cmComputeLinkInformation(cmGeneratorTarget const* target, + const std::string& config); ~cmComputeLinkInformation(); bool Compute(); @@ -73,7 +74,7 @@ private: std::set<cmTarget const*> SharedLibrariesLinked; // Context information. - cmTarget const* Target; + cmGeneratorTarget const* Target; cmMakefile* Makefile; cmGlobalGenerator* GlobalGenerator; cmake* CMakeInstance; |