mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-09 23:30:35 -06:00
JOM: Pass /NOLOGO when driving builds as is done for NMake
This fixes RunCMake.(Configure|configure_file|try_compile) test failures that failed to match empty stderr due to jom printing its identification line.
This commit is contained in:
@@ -563,7 +563,7 @@ void cmGlobalUnixMakefileGenerator3
|
||||
|
||||
// Since we have full control over the invocation of nmake, let us
|
||||
// make it quiet.
|
||||
if ( this->GetName() == "NMake Makefiles" )
|
||||
if (cmHasLiteralPrefix(this->GetName(), "NMake Makefiles"))
|
||||
{
|
||||
makeCommand.push_back("/NOLOGO");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user