summaryrefslogtreecommitdiffstats
path: root/Source/cmNMakeMakefileGenerator.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2001-11-15 14:55:50 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2001-11-15 14:55:50 (GMT)
commit2df56cf21b6b7da1a4655f95333f2f059c24f859 (patch)
treef890cb0c275dcb6880c984277d4107a631d87c3f /Source/cmNMakeMakefileGenerator.h
parent4b34ffa669466584f44aa76d3756b5b22b285674 (diff)
downloadCMake-2df56cf21b6b7da1a4655f95333f2f059c24f859.zip
CMake-2df56cf21b6b7da1a4655f95333f2f059c24f859.tar.gz
CMake-2df56cf21b6b7da1a4655f95333f2f059c24f859.tar.bz2
ENH: fix library builds with nmake
Diffstat (limited to 'Source/cmNMakeMakefileGenerator.h')
-rw-r--r--Source/cmNMakeMakefileGenerator.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmNMakeMakefileGenerator.h b/Source/cmNMakeMakefileGenerator.h
index 239524c..7249e87 100644
--- a/Source/cmNMakeMakefileGenerator.h
+++ b/Source/cmNMakeMakefileGenerator.h
@@ -98,6 +98,11 @@ protected:
virtual void OutputLinkLibraries(std::ostream& fout,
const char* targetLibrary,
const cmTarget &tgt);
+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
};
#endif