ENH: borland generator 2 is working more or less

This commit is contained in:
Bill Hoffman
2001-11-28 18:07:27 -05:00
parent b29e3f11cb
commit e7bb895afd
8 changed files with 95 additions and 23 deletions
+3 -1
View File
@@ -109,12 +109,14 @@ protected:
///! return true if the two paths are the same (checks short paths)
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;}
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;
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)
};
#endif