summaryrefslogtreecommitdiff
path: root/src/plugins/cmakeprojectmanager
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@digia.com>2013-11-13 13:31:35 +0100
committerTobias Hunger <tobias.hunger@digia.com>2013-11-13 14:12:49 +0100
commit2ea2fa0548c28a0e0a2c9144f8391fb6fd0af7a6 (patch)
tree0f371448ac67fa27d037e0cae7f495d92d7bd127 /src/plugins/cmakeprojectmanager
parentd2c47f5e5434b632c871a424fc45662e120a3cce (diff)
downloadqt-creator-2ea2fa0548c28a0e0a2c9144f8391fb6fd0af7a6.tar.gz
CMake: Initialize useNinja to false
Change-Id: I0fbc22efa6aacae2c1921c56ca0f41d4576bfc00 Reviewed-by: Daniel Teske <daniel.teske@digia.com>
Diffstat (limited to 'src/plugins/cmakeprojectmanager')
-rw-r--r--src/plugins/cmakeprojectmanager/cmakebuildinfo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmakebuildinfo.h b/src/plugins/cmakeprojectmanager/cmakebuildinfo.h
index b352f95de9..e4cd8e1ed6 100644
--- a/src/plugins/cmakeprojectmanager/cmakebuildinfo.h
+++ b/src/plugins/cmakeprojectmanager/cmakebuildinfo.h
@@ -43,7 +43,7 @@ class CMakeBuildInfo : public ProjectExplorer::BuildInfo
{
public:
CMakeBuildInfo(const ProjectExplorer::IBuildConfigurationFactory *f) :
- ProjectExplorer::BuildInfo(f) { }
+ ProjectExplorer::BuildInfo(f), useNinja(false) { }
CMakeBuildInfo(const Internal::CMakeBuildConfiguration *bc) :
ProjectExplorer::BuildInfo(ProjectExplorer::IBuildConfigurationFactory::find(bc->target()))