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:
Brad King 2015-03-02 10:08:09 -05:00
parent 56be75b310
commit 3e98ebbaef
1 changed files with 1 additions and 1 deletions

View File

@ -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");
}