From 344a7cff8d68dbd86f7bd4d5e6bc58b24356054e Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Tue, 11 Jun 2002 14:25:44 -0400 Subject: use lower case and not short path for uniq paths on window --- Source/cmUnixMakefileGenerator.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'Source/cmUnixMakefileGenerator.h') diff --git a/Source/cmUnixMakefileGenerator.h b/Source/cmUnixMakefileGenerator.h index 9881484dad..c25879c42b 100644 --- a/Source/cmUnixMakefileGenerator.h +++ b/Source/cmUnixMakefileGenerator.h @@ -169,6 +169,13 @@ protected: return std::string(s) + std::string(s2); } + ///! if the OS is case insensitive then return a lower case of the path. + virtual std::string LowerCasePath(const char* path) + { + return std::string(path); + } + + protected: std::string m_ExecutableOutputPath; std::string m_LibraryOutputPath; -- cgit v1.2.1