diff --git a/src/plugins/cmakeprojectmanager/cmakeprocess.cpp b/src/plugins/cmakeprojectmanager/cmakeprocess.cpp index 41529f17528..9e54b15c026 100644 --- a/src/plugins/cmakeprojectmanager/cmakeprocess.cpp +++ b/src/plugins/cmakeprojectmanager/cmakeprocess.cpp @@ -139,9 +139,10 @@ void CMakeProcess::run(const BuildDirParameters ¶meters, const QStringList & auto future = std::make_unique>(); future->setProgressRange(0, 1); - Core::ProgressManager::addTask(future->future(), - tr("Configuring \"%1\"").arg(parameters.projectName), - "CMake.Configure"); + Core::ProgressManager::addTimedTask(*future.get(), + tr("Configuring \"%1\"").arg(parameters.projectName), + "CMake.Configure", + 10); process->setCommand(commandLine); emit started();