From 38e69c907b2c36e7f14c9528357da7a55fa4cbc8 Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Wed, 14 Aug 2019 12:26:16 +0200 Subject: [PATCH] CMake: Fix marking the parsing run as successful This missing mark prevented the Run/Debug buttons to become active again! Change-Id: If02f300d4bb67424398102a9ce1677f366bb5801 Reviewed-by: hjk --- src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp b/src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp index b39c29d6c9c..ee9edca4484 100644 --- a/src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp +++ b/src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp @@ -297,6 +297,7 @@ void CMakeBuildSystem::combineScanAndParse() if (m_combinedScanAndParseResult) { updateProjectData(qobject_cast(m_currentContext.project), bc); + m_currentContext.guard.markAsSuccess(); } }