diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2009-07-11 04:05:20 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2009-07-11 04:05:20 (GMT) |
commit | 28b1912aa3eba8427cc3d0a4954f7366fcb338b9 (patch) | |
tree | 180a95ccff9004c9e0997c7004ae1a96bb8a5c35 /Source/cmLocalGenerator.h | |
parent | 2e22b70aa2c76ab5c980a566b72d043be0deb670 (diff) | |
download | CMake-28b1912aa3eba8427cc3d0a4954f7366fcb338b9.zip CMake-28b1912aa3eba8427cc3d0a4954f7366fcb338b9.tar.gz CMake-28b1912aa3eba8427cc3d0a4954f7366fcb338b9.tar.bz2 |
ENH: add group support and fix borland error
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r-- | Source/cmLocalGenerator.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h index 6ef2c43..94cf510 100644 --- a/Source/cmLocalGenerator.h +++ b/Source/cmLocalGenerator.h @@ -302,6 +302,10 @@ public: /** Construct a comment for a custom command. */ std::string ConstructComment(const cmCustomCommand& cc, const char* default_comment = ""); + // Compute object file names. + std::string GetObjectFileNameWithoutTarget(const cmSourceFile& source, + std::string const& dir_max, + bool* hasSourceExtension = 0); protected: /** Fill out these strings for the given target. Libraries to link, @@ -346,10 +350,6 @@ protected: std::ostream& os, const char* config, std::vector<std::string> const& configurationTypes); - // Compute object file names. - std::string GetObjectFileNameWithoutTarget(const cmSourceFile& source, - std::string const& dir_max, - bool* hasSourceExtension = 0); std::string& CreateSafeUniqueObjectFileName(const char* sin, std::string const& dir_max); |