diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-21 19:31:00 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-24 07:19:55 (GMT) |
commit | b74aa0e3d2eb90b83bbbdcc91e0b1dd721cd194f (patch) | |
tree | dc23c2e2b7f00f7a620e556775aa8f97424ec7a4 /Source/cmGhsMultiTargetGenerator.h | |
parent | b92d0b2c94936fa438c8c92a6961b6323795d6f9 (diff) | |
download | CMake-b74aa0e3d2eb90b83bbbdcc91e0b1dd721cd194f.zip CMake-b74aa0e3d2eb90b83bbbdcc91e0b1dd721cd194f.tar.gz CMake-b74aa0e3d2eb90b83bbbdcc91e0b1dd721cd194f.tar.bz2 |
GHS: Port to cmGeneratorTarget.
Diffstat (limited to 'Source/cmGhsMultiTargetGenerator.h')
-rw-r--r-- | Source/cmGhsMultiTargetGenerator.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Source/cmGhsMultiTargetGenerator.h b/Source/cmGhsMultiTargetGenerator.h index d1c17f4..327fdef 100644 --- a/Source/cmGhsMultiTargetGenerator.h +++ b/Source/cmGhsMultiTargetGenerator.h @@ -54,11 +54,11 @@ public: return this->AbsOutputFileName.c_str(); } - static std::string GetRelBuildFilePath(const cmTarget *target); - static std::string GetAbsPathToRoot(const cmTarget *target); - static std::string GetAbsBuildFilePath(const cmTarget *target); - static std::string GetRelBuildFileName(const cmTarget *target); - static std::string GetBuildFileName(const cmTarget *target); + static std::string GetRelBuildFilePath(const cmGeneratorTarget *target); + static std::string GetAbsPathToRoot(const cmGeneratorTarget *target); + static std::string GetAbsBuildFilePath(const cmGeneratorTarget *target); + static std::string GetRelBuildFileName(const cmGeneratorTarget *target); + static std::string GetBuildFileName(const cmGeneratorTarget *target); static std::string AddSlashIfNeededToPath(std::string const &input); private: @@ -99,7 +99,6 @@ private: bool DetermineIfDynamicDownload(std::string const &config, const std::string &language); - cmTarget *Target; cmGeneratorTarget* GeneratorTarget; cmLocalGhsMultiGenerator *LocalGenerator; cmMakefile *Makefile; |