Use outputparsers when creating S60 packages

This commit is contained in:
Tobias Hunger
2010-07-07 16:43:45 +02:00
parent 3d2e566772
commit b87f3fbcc8

View File

@@ -31,9 +31,11 @@
#include "qt4projectmanagerconstants.h"
#include "qt4buildconfiguration.h"
#include "abldparser.h"
#include <projectexplorer/buildconfiguration.h>
#include <projectexplorer/target.h>
#include <projectexplorer/gnumakeparser.h>
using namespace Qt4ProjectManager::Internal;
@@ -118,6 +120,11 @@ bool S60CreatePackageStep::init()
<< QLatin1String("QT_SIS_KEY=") + QDir::toNativeSeparators(customKeyPath());
}
setArguments(args); // overwrite any stuff done in make step
ProjectExplorer::GnuMakeParser *parser = new ProjectExplorer::GnuMakeParser;
parser->appendOutputParser(new Qt4ProjectManager::AbldParser);
setOutputParser(parser);
return true;
}