diff options
author | Stephen Kelly <steveire@gmail.com> | 2012-09-15 23:35:08 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2012-09-19 13:31:39 (GMT) |
commit | f9146f6b90d381a70bdb6a3c97742e3a53bb6235 (patch) | |
tree | 9cd1c197d542112138c444fa0b6106f5f8070022 /Source/cmLocalGenerator.h | |
parent | 9facfd133654098ac59c0df957555ea5b5ed9a5a (diff) | |
download | CMake-f9146f6b90d381a70bdb6a3c97742e3a53bb6235.zip CMake-f9146f6b90d381a70bdb6a3c97742e3a53bb6235.tar.gz CMake-f9146f6b90d381a70bdb6a3c97742e3a53bb6235.tar.bz2 |
Port cmLocalGenerator::GetTargetFlags to cmGeneratorTarget.
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index e371e40..6ab8067 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -335,11 +335,12 @@ public: void GetTargetFlags(std::string& linkLibs, std::string& flags, std::string& linkFlags, - cmTarget&target); + cmGeneratorTarget* target); protected: ///! put all the libraries for a target on into the given stream - virtual void OutputLinkLibraries(std::ostream&, cmTarget&, bool relink); + virtual void OutputLinkLibraries(std::ostream&, cmGeneratorTarget&, + bool relink); // Expand rule variables in CMake of the type found in language rules void ExpandRuleVariables(std::string& string, |