diff options
author | Alex Neundorf <neundorf@kde.org> | 2011-07-02 15:08:34 (GMT) |
---|---|---|
committer | Alex Neundorf <neundorf@kde.org> | 2011-07-02 15:08:34 (GMT) |
commit | b976e70063008c0633cb5dd4ecb1f40278c67935 (patch) | |
tree | 86a58baa1b2f351a27729a3572932ba1604efa77 /Source/cmLocalGenerator.h | |
parent | fe9ac70076c6c7a1c43333bf4c841cb3d99e8971 (diff) | |
download | CMake-b976e70063008c0633cb5dd4ecb1f40278c67935.zip CMake-b976e70063008c0633cb5dd4ecb1f40278c67935.tar.gz CMake-b976e70063008c0633cb5dd4ecb1f40278c67935.tar.bz2 |
Make clLocalGenerator::GetTargetFlags() public
This will later on be used for getting the link flags
Alex
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index aebf9f3..a204a73 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -307,7 +307,6 @@ public: std::string const& dir_max, bool* hasSourceExtension = 0); -protected: /** Fill out these strings for the given target. Libraries to link, * flags, and linkflags. */ void GetTargetFlags(std::string& linkLibs, @@ -315,6 +314,7 @@ protected: std::string& linkFlags, cmTarget&target); +protected: ///! put all the libraries for a target on into the given stream virtual void OutputLinkLibraries(std::ostream&, cmTarget&, bool relink); |