diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-04-23 13:12:57 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-04-23 13:12:57 (GMT) |
commit | 3262bc73d3fd7e224537043864ac01a257901cb5 (patch) | |
tree | 61adc2048f727240200856089bd266f55d7eb3a1 /Source/cmLocalVisualStudio6Generator.cxx | |
parent | 32a6a8fb0c606bfce2fa8da947afaefc47268c1e (diff) | |
download | CMake-3262bc73d3fd7e224537043864ac01a257901cb5.zip CMake-3262bc73d3fd7e224537043864ac01a257901cb5.tar.gz CMake-3262bc73d3fd7e224537043864ac01a257901cb5.tar.bz2 |
ENH: allow verbose makefile flag to remove nologo from all commands so you can see them in visual studio 6
Diffstat (limited to 'Source/cmLocalVisualStudio6Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio6Generator.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmLocalVisualStudio6Generator.cxx b/Source/cmLocalVisualStudio6Generator.cxx index cf863a5..544b09c 100644 --- a/Source/cmLocalVisualStudio6Generator.cxx +++ b/Source/cmLocalVisualStudio6Generator.cxx @@ -1004,7 +1004,12 @@ void cmLocalVisualStudio6Generator::WriteDSPHeader(std::ostream& fout, const cha { cmSystemTools::ReplaceString(line, "CM_STATIC_LIB_ARGS", staticLibOptions.c_str()); + } + if(m_Makefile->IsOn("CMAKE_VERBOSE_MAKEFILE")) + { + cmSystemTools::ReplaceString(line, "/nologo", ""); } + cmSystemTools::ReplaceString(line, "CM_LIBRARIES", libOptions.c_str()); cmSystemTools::ReplaceString(line, "CM_DEBUG_LIBRARIES", |