summaryrefslogtreecommitdiffstats
path: root/Source/cmNMakeMakefileGenerator.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2001-11-28 23:07:27 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2001-11-28 23:07:27 (GMT)
commite7bb895afda0ccc5711906873040459942137dce (patch)
tree571e06a2919cb2922ca46ab0f64f5e969efe0ab5 /Source/cmNMakeMakefileGenerator.h
parentb29e3f11cbdfa0dffb40eb394468b448066762e6 (diff)
downloadCMake-e7bb895afda0ccc5711906873040459942137dce.zip
CMake-e7bb895afda0ccc5711906873040459942137dce.tar.gz
CMake-e7bb895afda0ccc5711906873040459942137dce.tar.bz2
ENH: borland generator 2 is working more or less
Diffstat (limited to 'Source/cmNMakeMakefileGenerator.h')
-rw-r--r--Source/cmNMakeMakefileGenerator.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmNMakeMakefileGenerator.h b/Source/cmNMakeMakefileGenerator.h
index 30be86a..78d54fa 100644
--- a/Source/cmNMakeMakefileGenerator.h
+++ b/Source/cmNMakeMakefileGenerator.h
@@ -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