diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-15 14:55:50 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-15 14:55:50 (GMT) |
commit | 2df56cf21b6b7da1a4655f95333f2f059c24f859 (patch) | |
tree | f890cb0c275dcb6880c984277d4107a631d87c3f /Source/cmUnixMakefileGenerator.h | |
parent | 4b34ffa669466584f44aa76d3756b5b22b285674 (diff) | |
download | CMake-2df56cf21b6b7da1a4655f95333f2f059c24f859.zip CMake-2df56cf21b6b7da1a4655f95333f2f059c24f859.tar.gz CMake-2df56cf21b6b7da1a4655f95333f2f059c24f859.tar.bz2 |
ENH: fix library builds with nmake
Diffstat (limited to 'Source/cmUnixMakefileGenerator.h')
-rw-r--r-- | Source/cmUnixMakefileGenerator.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Source/cmUnixMakefileGenerator.h b/Source/cmUnixMakefileGenerator.h index 2b0bc29..b30d6b9 100644 --- a/Source/cmUnixMakefileGenerator.h +++ b/Source/cmUnixMakefileGenerator.h @@ -144,13 +144,13 @@ protected: const std::vector<std::string>& SubDirectories); virtual void OutputMakeRule(std::ostream&, - const char* comment, - const char* target, - const char* depends, - const char* command, - const char* command2 = 0, - const char* command3 = 0, - const char* command4 = 0); + const char* comment, + const char* target, + const char* depends, + const char* command, + const char* command2 = 0, + const char* command3 = 0, + const char* command4 = 0); void SetObjectFileExtension(const char* e) { m_ObjectFileExtension = e;} void SetExecutableExtension(const char* e) { m_ExecutableExtension = e;} void SetStaticLibraryExtension(const char* e) {m_StaticLibraryExtension = e;} |