From aef4a8fbaf509cb96f0516a9fd8b0977311f6c5f Mon Sep 17 00:00:00 2001 From: Nicolas Arnaud-Cormos Date: Fri, 21 Oct 2011 23:17:58 +0200 Subject: Add a locator to compile a specific cmake target The locator will show all the targets for the cmake projects, even the /fast one. It allows people to build a specific target without reloading the whole project. It's using the make prefix. Change-Id: Ia6701bb19c1ae390af647d94d0a2834b05a1772a Reviewed-by: Eike Ziller Reviewed-by: Daniel Teske --- src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp') diff --git a/src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp b/src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp index 123d6af6fb..b5db28b4f4 100644 --- a/src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp +++ b/src/plugins/cmakeprojectmanager/cmakeprojectplugin.cpp @@ -37,6 +37,7 @@ #include "makestep.h" #include "cmakeprojectconstants.h" #include "cmaketarget.h" +#include "cmakelocatorfilter.h" #include #include @@ -72,6 +73,7 @@ bool CMakeProjectPlugin::initialize(const QStringList & /*arguments*/, QString * addAutoReleasedObject(new CMakeEditorFactory(manager, editorHandler)); addAutoReleasedObject(new CMakeTargetFactory); + addAutoReleasedObject(new CMakeLocatorFilter); return true; } -- cgit v1.2.1