summaryrefslogtreecommitdiffstats
path: root/Source/cmNMakeMakefileGenerator.h
diff options
context:
space:
mode:
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