Browse Source

Make clLocalGenerator::GetTargetFlags() public

This will later on be used for getting the link flags

Alex
Alex Neundorf 14 years ago
parent
commit
b976e70063
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmLocalGenerator.h

+ 1 - 1
Source/cmLocalGenerator.h

@@ -307,7 +307,6 @@ public:
                                              std::string const& dir_max,
                                              std::string const& dir_max,
                                              bool* hasSourceExtension = 0);
                                              bool* hasSourceExtension = 0);
 
 
-protected:
   /** Fill out these strings for the given target.  Libraries to link,
   /** Fill out these strings for the given target.  Libraries to link,
    *  flags, and linkflags. */
    *  flags, and linkflags. */
   void GetTargetFlags(std::string& linkLibs, 
   void GetTargetFlags(std::string& linkLibs, 
@@ -315,6 +314,7 @@ protected:
                       std::string& linkFlags,
                       std::string& linkFlags,
                       cmTarget&target);
                       cmTarget&target);
   
   
+protected:
   ///! put all the libraries for a target on into the given stream
   ///! 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&, cmTarget&, bool relink);