summaryrefslogtreecommitdiffstats
path: root/Source/cmInstallTargetGenerator.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-07-28 17:58:52 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-07-30 06:28:32 (GMT)
commita23fcc9558f9f2788fc828f7473060ea1f035f55 (patch)
tree5644c9edfffae69751936e099ef5baa6c9dd5b40 /Source/cmInstallTargetGenerator.h
parent4e41913f9acb6a33f6a4eb1b88577fb7499e99d6 (diff)
downloadCMake-a23fcc9558f9f2788fc828f7473060ea1f035f55.zip
CMake-a23fcc9558f9f2788fc828f7473060ea1f035f55.tar.gz
CMake-a23fcc9558f9f2788fc828f7473060ea1f035f55.tar.bz2
cmInstallTargetGenerator: Port to cmGeneratorTarget.
Diffstat (limited to 'Source/cmInstallTargetGenerator.h')
-rw-r--r--Source/cmInstallTargetGenerator.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/cmInstallTargetGenerator.h b/Source/cmInstallTargetGenerator.h
index 128e1a2..a8f4a75 100644
--- a/Source/cmInstallTargetGenerator.h
+++ b/Source/cmInstallTargetGenerator.h
@@ -13,7 +13,9 @@
#define cmInstallTargetGenerator_h
#include "cmInstallGenerator.h"
-#include "cmTarget.h"
+
+class cmTarget;
+class cmGeneratorTarget;
/** \class cmInstallTargetGenerator
* \brief Generate target installation rules.
@@ -58,7 +60,7 @@ public:
void Compute(cmLocalGenerator* lg);
- cmTarget* GetTarget() const { return this->Target; }
+ cmGeneratorTarget* GetTarget() const { return this->Target; }
bool IsImportLibrary() const { return this->ImportLibrary; }
@@ -102,7 +104,7 @@ protected:
const std::string& toDestDirPath);
std::string TargetName;
- cmTarget* Target;
+ cmGeneratorTarget* Target;
std::string FilePermissions;
NamelinkModeType NamelinkMode;
bool ImportLibrary;