From b976e70063008c0633cb5dd4ecb1f40278c67935 Mon Sep 17 00:00:00 2001 From: Alex Neundorf Date: Sat, 2 Jul 2011 17:08:34 +0200 Subject: [PATCH] Make clLocalGenerator::GetTargetFlags() public This will later on be used for getting the link flags Alex --- Source/cmLocalGenerator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index aebf9f39a..a204a73d5 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);