cmake: Display "loading initial cache" message on stdout
This message has been on stderr since the "-C" option was first added, but it is informational and not an error. Other informational messages go to stdout, so send this one there too.
This commit is contained in:
parent
97502ba77b
commit
6cc0f6b512
|
@ -437,7 +437,7 @@ bool cmake::SetCacheArgs(const std::vector<std::string>& args)
|
|||
return false;
|
||||
}
|
||||
}
|
||||
std::cerr << "loading initial cache file " << path << "\n";
|
||||
std::cout << "loading initial cache file " << path << "\n";
|
||||
this->ReadListFile(args, path.c_str());
|
||||
}
|
||||
else if(arg.find("-P",0) == 0)
|
||||
|
|
Loading…
Reference in New Issue