diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-07-28 17:58:52 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-07-30 06:28:32 (GMT) |
commit | a23fcc9558f9f2788fc828f7473060ea1f035f55 (patch) | |
tree | 5644c9edfffae69751936e099ef5baa6c9dd5b40 /Source/cmInstallTargetGenerator.h | |
parent | 4e41913f9acb6a33f6a4eb1b88577fb7499e99d6 (diff) | |
download | CMake-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.h | 8 |
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; |