summaryrefslogtreecommitdiff
path: root/Source/cmComputeLinkInformation.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-08-04 19:19:50 +0200
committerStephen Kelly <steveire@gmail.com>2015-08-05 18:20:49 +0200
commitc93230ac3838231f2f44986e224da1bdaf9a7dfe (patch)
treea3436e3f2aee006db5d25c7ba4849012cac863b2 /Source/cmComputeLinkInformation.h
parentee26add4f4062d8b53f22e161027a573dc03399c (diff)
downloadcmake-c93230ac3838231f2f44986e224da1bdaf9a7dfe.tar.gz
cmComputeLinkInformation: Port to cmGeneratorTarget.
Diffstat (limited to 'Source/cmComputeLinkInformation.h')
-rw-r--r--Source/cmComputeLinkInformation.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmComputeLinkInformation.h b/Source/cmComputeLinkInformation.h
index 2d7a5a5cf3..8b8357459f 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;