diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-28 12:15:04 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-28 12:15:04 (GMT) |
commit | ed50410ae7903c8ed4b772e55fb797e651790f32 (patch) | |
tree | 32c2c6aec62e181c9eff174cdb9788c725f7607e /Source/cmNMakeMakefileGenerator.h | |
parent | f901b9c3403b62b0a5f8e7e07e821b88f9d6e15b (diff) | |
download | CMake-ed50410ae7903c8ed4b772e55fb797e651790f32.zip CMake-ed50410ae7903c8ed4b772e55fb797e651790f32.tar.gz CMake-ed50410ae7903c8ed4b772e55fb797e651790f32.tar.bz2 |
bug: fix same path comparison when short paths are used
Diffstat (limited to 'Source/cmNMakeMakefileGenerator.h')
-rw-r--r-- | Source/cmNMakeMakefileGenerator.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmNMakeMakefileGenerator.h b/Source/cmNMakeMakefileGenerator.h index 424aaef..e71abe9 100644 --- a/Source/cmNMakeMakefileGenerator.h +++ b/Source/cmNMakeMakefileGenerator.h @@ -103,7 +103,9 @@ protected: virtual void OutputBuildLibraryInDir(std::ostream& fout, const char* path, const char* library, - const char* fullpath); + const char* fullpath); + ///! return true if the two paths are the same (checks short paths) + virtual bool SamePath(const char* path1, const char* path2); private: bool m_QuoteNextCommand; // if this is true, OutputMakeRule // will not quote the next commands |