Ninja: suppress startup logos

Having Ninja's smart printing we are more allergic on
unneeded tool output.
This commit is contained in:
Peter Kuemmel 2012-06-14 09:52:39 +02:00
parent e2ffa14b99
commit 77cb7b502f
1 changed files with 5 additions and 3 deletions

View File

@ -694,20 +694,22 @@ int main() {
fprintf(stderr, "\n\n");
#endif
std::string showflag = " /showIncludes /nologo ";
if (lang != "RC") {
return process(srcfile, dfile, objfile, prefix,
binpath + " /showIncludes " + rest);
binpath + showflag + rest);
} else {
// "misuse" cl.exe to get headers from .rc files
// rc: /fo x\CMakeFiles\x.dir\x.rc.res src\x\x.rc
// cl: /out:x\CMakeFiles\x.dir\x.rc.res.dep.obj /Tc src\x\x.rc
cl = "\"" + cl + "\" /P /DRC_INVOKED /showIncludes " +
cl = "\"" + cl + "\" /P /DRC_INVOKED " + showflag +
replace(rest, "/fo" + objfile, "/out:" + objfile + ".dep.obj /Tc ");
int ret;
ret = process(srcfile, dfile, objfile, prefix, cl, true);
ret = process(srcfile, "" , objfile, prefix, binpath + " " + rest);
ret = process(srcfile, "" , objfile, prefix,
binpath + " /nologo " + rest);
return ret;
}