diff options
author | Brad King <brad.king@kitware.com> | 2015-02-04 17:30:12 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-02-04 17:30:12 (GMT) |
commit | be072d3fe1872651ce03ad8258bef23e1e3f795c (patch) | |
tree | e50b2630b4bd74321d922aa41f33e85a5cfa9159 /Source | |
parent | 8f820043684fa8a11289061297828bccce7ba080 (diff) | |
parent | 2fed8e173cbd8c897b0cf2fd46ec72fedc3c43ed (diff) | |
download | CMake-be072d3fe1872651ce03ad8258bef23e1e3f795c.zip CMake-be072d3fe1872651ce03ad8258bef23e1e3f795c.tar.gz CMake-be072d3fe1872651ce03ad8258bef23e1e3f795c.tar.bz2 |
Merge topic 'Qt-AUTOUIC-file-origin'
2fed8e17 QtAutogen: Issue error message with origin file (#15342).
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmQtAutoGenerators.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmQtAutoGenerators.cxx b/Source/cmQtAutoGenerators.cxx index bf79066..e18e757 100644 --- a/Source/cmQtAutoGenerators.cxx +++ b/Source/cmQtAutoGenerators.cxx @@ -2243,7 +2243,8 @@ bool cmQtAutoGenerators::GenerateUi(const std::string& realName, if (!result || retVal) { std::cerr << "AUTOUIC: error: process for " << ui_output_file << - " failed:\n" << output << std::endl; + " needed by\n \"" << realName << "\"\nfailed:\n" << output + << std::endl; this->RunUicFailed = true; cmSystemTools::RemoveFile(ui_output_file); return false; |