diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2001-12-06 18:32:28 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2001-12-06 18:32:28 (GMT) |
commit | dea1309e8d00547c685320606041dd047d2293b2 (patch) | |
tree | 74ffc1e7da0193d1a5020fbdc3a6c4c2008be6b5 /Source/cmNMakeMakefileGenerator.h | |
parent | 2b8e16e59c3bfe41482820d8d5d0a3ddbbbb3fbf (diff) | |
download | CMake-dea1309e8d00547c685320606041dd047d2293b2.zip CMake-dea1309e8d00547c685320606041dd047d2293b2.tar.gz CMake-dea1309e8d00547c685320606041dd047d2293b2.tar.bz2 |
Fix the command quoting pb (remove m_QuoteNextCommand), move ConvertToNativePath to NMake gen
Diffstat (limited to 'Source/cmNMakeMakefileGenerator.h')
-rw-r--r-- | Source/cmNMakeMakefileGenerator.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Source/cmNMakeMakefileGenerator.h b/Source/cmNMakeMakefileGenerator.h index 78d54fa..0681c76 100644 --- a/Source/cmNMakeMakefileGenerator.h +++ b/Source/cmNMakeMakefileGenerator.h @@ -110,11 +110,8 @@ protected: virtual bool SamePath(const char* path1, const char* path2); void SetLibraryPathOption(const char* lib){ m_LibraryPathOption = lib;} void SetLibraryLinkOption(const char* lib){ m_LibraryLinkOption = lib;} + virtual std::string ConvertToNativePath(const char* s); private: - bool m_QuoteNextCommand; // if this is true, OutputMakeRule - // will not quote the next commands - // it is reset to false after each - // call to OutputMakeRule std::string m_LibraryPathOption;// option to specifiy a link path -LIBPATH std::string m_LibraryLinkOption; // option to specify a library (like -l, empty for nmake) }; |