forked from qt-creator/qt-creator
Add output parser for Qt-specific utilities
* Handle moc warnings there * Add unit tests * Use new parser in Qt's makestep Task-number: QTCREATORBUG-1908
This commit is contained in:
@@ -34,6 +34,7 @@
|
||||
#include "qt4target.h"
|
||||
#include "qt4buildconfiguration.h"
|
||||
#include "qt4projectmanagerconstants.h"
|
||||
#include "qtparser.h"
|
||||
|
||||
#include <projectexplorer/buildsteplist.h>
|
||||
#include <projectexplorer/gnumakeparser.h>
|
||||
@@ -170,7 +171,8 @@ bool MakeStep::init()
|
||||
setEnabled(true);
|
||||
setArguments(args);
|
||||
|
||||
setOutputParser(new ProjectExplorer::GnuMakeParser(workingDirectory));
|
||||
setOutputParser(new QtParser);
|
||||
appendOutputParser(new ProjectExplorer::GnuMakeParser(workingDirectory));
|
||||
if (toolchain)
|
||||
appendOutputParser(toolchain->outputParser());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user