diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-28 23:07:27 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-28 23:07:27 (GMT) |
commit | e7bb895afda0ccc5711906873040459942137dce (patch) | |
tree | 571e06a2919cb2922ca46ab0f64f5e969efe0ab5 /Source/cmUnixMakefileGenerator.h | |
parent | b29e3f11cbdfa0dffb40eb394468b448066762e6 (diff) | |
download | CMake-e7bb895afda0ccc5711906873040459942137dce.zip CMake-e7bb895afda0ccc5711906873040459942137dce.tar.gz CMake-e7bb895afda0ccc5711906873040459942137dce.tar.bz2 |
ENH: borland generator 2 is working more or less
Diffstat (limited to 'Source/cmUnixMakefileGenerator.h')
-rw-r--r-- | Source/cmUnixMakefileGenerator.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmUnixMakefileGenerator.h b/Source/cmUnixMakefileGenerator.h index 6018721c..277635c 100644 --- a/Source/cmUnixMakefileGenerator.h +++ b/Source/cmUnixMakefileGenerator.h @@ -164,6 +164,7 @@ protected: void SetStaticLibraryExtension(const char* e) {m_StaticLibraryExtension = e;} void SetSharedLibraryExtension(const char* e) {m_SharedLibraryExtension = e;} void SetLibraryPrefix(const char* e) { m_LibraryPrefix = e;} + virtual std::string ConvertToNativePath(const char* s) { return s; } protected: std::string m_ExecutableOutputPath; std::string m_LibraryOutputPath; |