diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-19 19:23:29 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-24 07:19:54 (GMT) |
commit | 05982b26e6fc58422dd4c05497466f206d6c93f7 (patch) | |
tree | 3cab570c6f797e0c589ed5944d790d4a6c0280b4 /Source/cmXCodeObject.h | |
parent | effe874d25cc0448d9f37fd90283fb83118cb31e (diff) | |
download | CMake-05982b26e6fc58422dd4c05497466f206d6c93f7.zip CMake-05982b26e6fc58422dd4c05497466f206d6c93f7.tar.gz CMake-05982b26e6fc58422dd4c05497466f206d6c93f7.tar.bz2 |
Xcode: Port API to cmGeneratorTarget.
Diffstat (limited to 'Source/cmXCodeObject.h')
-rw-r--r-- | Source/cmXCodeObject.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmXCodeObject.h b/Source/cmXCodeObject.h index ed2940a..0f0548b 100644 --- a/Source/cmXCodeObject.h +++ b/Source/cmXCodeObject.h @@ -13,7 +13,7 @@ #define cmXCodeObject_h #include "cmStandardIncludes.h" -class cmTarget; +class cmGeneratorTarget; class cmXCodeObject { @@ -87,11 +87,11 @@ public: { this->Id = id; } - cmTarget* GetTarget() + cmGeneratorTarget* GetTarget() { return this->Target; } - void SetTarget(cmTarget* t) + void SetTarget(cmGeneratorTarget* t) { this->Target = t; } @@ -146,7 +146,7 @@ public: protected: void PrintString(std::ostream& os) const; - cmTarget* Target; + cmGeneratorTarget* Target; Type TypeValue; std::string Id; PBXType IsA; |