Merge topic 'autogen-fix-cmake-error'
a189d019
QtAutogen: Use cmSystemTools::Error instead of std::cerr
This commit is contained in:
commit
f564e4ab01
|
@ -478,7 +478,7 @@ static bool ListQt5RccInputs(cmSourceFile* sf, cmGeneratorTarget const* target,
|
||||||
<< " failed:\n"
|
<< " failed:\n"
|
||||||
<< rccStdOut << "\n"
|
<< rccStdOut << "\n"
|
||||||
<< rccStdErr << std::endl;
|
<< rccStdErr << std::endl;
|
||||||
std::cerr << err.str();
|
cmSystemTools::Error(err.str().c_str());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -507,7 +507,7 @@ static bool ListQt5RccInputs(cmSourceFile* sf, cmGeneratorTarget const* target,
|
||||||
std::ostringstream err;
|
std::ostringstream err;
|
||||||
err << "AUTOGEN: error: Rcc lists unparsable output " << eline
|
err << "AUTOGEN: error: Rcc lists unparsable output " << eline
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
std::cerr << err.str();
|
cmSystemTools::Error(err.str().c_str());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
pos += searchString.length();
|
pos += searchString.length();
|
||||||
|
|
Loading…
Reference in New Issue