I also ran into the same problem and I solved it.
I have a XXX.qrc file in my project to include some resource file, for example xxx.png, xxx.gif or any image files, for example:
<RCC> <qresource prefix="/MocapServer"> <file>Resources/mocapServer.qss</file> <file>Resources/button/disable.png</file> <file>Resources/button/unused.png</file> <file>Resources/button/config_dialog_close.png</file> <file>Resources/button/u73.jpg</file> <file>Resources/button/progressbar.png</file> ...
but one file in XXX.qrc was not found. This will result in a compilation error:
Error 1 error MSB6006: "cmd.exe" completed with code 1 '
Correct the wrong name or path can fix this problem.
By the way, my project is QT prj with vs2015 update3.
source share