aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cmakeprojectmanager/cmakebuildstep.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2020-02-24 10:38:10 +0100
committerTobias Hunger <tobias.hunger@qt.io>2020-02-24 10:44:39 +0000
commite525dea898485f5bf46a4068214130b155da5e5e (patch)
tree5b1e0d51f0a00128a3d2c7717ae78f58e420feec /src/plugins/cmakeprojectmanager/cmakebuildstep.cpp
parentde5f4d1160ba10443fd58406e31bb492bd39e088 (diff)
CMakeBuildStep: Fix message
Change-Id: I6c373639273bdce17531e3e7fe5ec0f38e62b8b3 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/cmakeprojectmanager/cmakebuildstep.cpp')
-rw-r--r--src/plugins/cmakeprojectmanager/cmakebuildstep.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmakebuildstep.cpp b/src/plugins/cmakeprojectmanager/cmakebuildstep.cpp
index cd899d1070d..a50b4e19ccc 100644
--- a/src/plugins/cmakeprojectmanager/cmakebuildstep.cpp
+++ b/src/plugins/cmakeprojectmanager/cmakebuildstep.cpp
@@ -141,8 +141,8 @@ bool CMakeBuildStep::init()
canInit = false;
}
if (bc && !bc->isEnabled()) {
- emit addTask(BuildSystemTask(Task::Error,
- tr("CMakeProjectManager::CMakeBuildStep")));
+ emit addTask(
+ BuildSystemTask(Task::Error, tr("The build configuration is currently disabled.")));
canInit = false;
}