diff --git a/src/plugins/cmakeprojectmanager/cmakebuildstep.cpp b/src/plugins/cmakeprojectmanager/cmakebuildstep.cpp index 1b642778629..39b0cc2b1db 100644 --- a/src/plugins/cmakeprojectmanager/cmakebuildstep.cpp +++ b/src/plugins/cmakeprojectmanager/cmakebuildstep.cpp @@ -352,7 +352,8 @@ void CMakeBuildStep::handleProjectWasParsed(bool success) } else if (success) { runImpl(); } else { - AbstractProcessStep::stdError(Tr::tr("Project did not parse successfully, cannot build.")); + emit addOutput(Tr::tr("Project did not parse successfully, cannot build."), + OutputFormat::ErrorMessage); emit finished(false); } }