aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2019-08-14 12:26:16 +0200
committerTobias Hunger <tobias.hunger@qt.io>2019-08-14 10:59:45 +0000
commit38e69c907b2c36e7f14c9528357da7a55fa4cbc8 (patch)
tree099dc0f4d4ef248b4977f8fdca3d7937a95a66c6 /src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp
parente027ed5e964e3e9b4e9a87cf76bcb4f821f616c6 (diff)
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 <hjk@qt.io>
Diffstat (limited to 'src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp')
-rw-r--r--src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp b/src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp
index b39c29d6c9..ee9edca448 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<CMakeProject *>(m_currentContext.project), bc);
+ m_currentContext.guard.markAsSuccess();
}
}