summaryrefslogtreecommitdiffstats
path: root/Source/cmBorlandMakefileGenerator.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-02-21 20:55:20 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2002-02-21 20:55:20 (GMT)
commit3c748ec5ad0898298b6f368b23a13b2eba0eb54e (patch)
tree8b96f3193a8da8e118700c92212f99634a661fd9 /Source/cmBorlandMakefileGenerator.h
parent49fa9d8b61fcdf4f62c9a9e5f59bd24ef7f3ca7f (diff)
downloadCMake-3c748ec5ad0898298b6f368b23a13b2eba0eb54e.zip
CMake-3c748ec5ad0898298b6f368b23a13b2eba0eb54e.tar.gz
CMake-3c748ec5ad0898298b6f368b23a13b2eba0eb54e.tar.bz2
ENH: add a virtual CreateMakeVariable to shorten makefile variables for borland make
Diffstat (limited to 'Source/cmBorlandMakefileGenerator.h')
-rw-r--r--Source/cmBorlandMakefileGenerator.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmBorlandMakefileGenerator.h b/Source/cmBorlandMakefileGenerator.h
index 160944d..738b4a2 100644
--- a/Source/cmBorlandMakefileGenerator.h
+++ b/Source/cmBorlandMakefileGenerator.h
@@ -61,6 +61,9 @@ protected:
virtual std::string GetOutputExtension(const char* sourceExtension);
///! return true if the two paths are the same (checks short paths)
virtual bool SamePath(const char* path1, const char* path2);
+ virtual std::string CreateMakeVariable(const char* s, const char* s2);
+ std::map<cmStdString, cmStdString> m_MakeVariableMap;
+ std::map<cmStdString, cmStdString> m_ShortMakeVariableMap;
};
#endif