forked from qt-creator/qt-creator
		
	Move QtParser to QtSupport plugin
This way we can make use of it in the cmake plugin Change-Id: Ie1887d49ea616ec62d91a73b4daa75d69cef61c9 Reviewed-on: http://codereview.qt.nokia.com/91 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
This commit is contained in:
		| @@ -37,7 +37,6 @@ | ||||
| #include "qt4target.h" | ||||
| #include "qt4buildconfiguration.h" | ||||
| #include "qt4projectmanagerconstants.h" | ||||
| #include "qtparser.h" | ||||
|  | ||||
| #include <projectexplorer/toolchain.h> | ||||
| #include <projectexplorer/buildsteplist.h> | ||||
| @@ -45,6 +44,7 @@ | ||||
| #include <projectexplorer/projectexplorerconstants.h> | ||||
| #include <extensionsystem/pluginmanager.h> | ||||
| #include <utils/qtcprocess.h> | ||||
| #include <qtsupport/qtparser.h> | ||||
|  | ||||
| #include <QtCore/QDir> | ||||
| #include <QtCore/QFileInfo> | ||||
| @@ -207,9 +207,9 @@ bool MakeStep::init() | ||||
|     if (bc->qtVersion()) | ||||
|         parser = bc->qtVersion()->createOutputParser(); | ||||
|     if (parser) | ||||
|         parser->appendOutputParser(new QtParser); | ||||
|         parser->appendOutputParser(new QtSupport::QtParser); | ||||
|     else | ||||
|         parser = new QtParser; | ||||
|         parser = new QtSupport::QtParser; | ||||
|     if (toolchain) | ||||
|         parser->appendOutputParser(toolchain->outputParser()); | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user