summaryrefslogtreecommitdiff
path: root/Source/cmUnixMakefileGenerator.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-06-11 14:25:44 -0400
committerBill Hoffman <bill.hoffman@kitware.com>2002-06-11 14:25:44 -0400
commit344a7cff8d68dbd86f7bd4d5e6bc58b24356054e (patch)
tree5198c8e0b9a30bdbc241988b154da335cf466083 /Source/cmUnixMakefileGenerator.h
parent9ed9bffa6f267ad1696ec217930de74640ff4e74 (diff)
downloadcmake-344a7cff8d68dbd86f7bd4d5e6bc58b24356054e.tar.gz
use lower case and not short path for uniq paths on window
Diffstat (limited to 'Source/cmUnixMakefileGenerator.h')
-rw-r--r--Source/cmUnixMakefileGenerator.h7
1 files changed, 7 insertions, 0 deletions
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;