forked from qt-creator/qt-creator
Add build parsers for S60.
This is a initial version including * ABLD error parsing * RVCT compiler output parsing. Reviewed-By: con
This commit is contained in:
@@ -115,6 +115,13 @@ bool MakeStep::init(const QString &name)
|
||||
|
||||
if (type == ProjectExplorer::ToolChain::MSVC || type == ProjectExplorer::ToolChain::WINCE)
|
||||
setBuildParser(ProjectExplorer::Constants::BUILD_PARSER_MSVC);
|
||||
else if (ProjectExplorer::ToolChain::GCCE == type)
|
||||
setBuildParser(ProjectExplorer::Constants::BUILD_PARSER_ABLD_GCCE);
|
||||
else if (ProjectExplorer::ToolChain::WINSCW == type)
|
||||
setBuildParser(ProjectExplorer::Constants::BUILD_PARSER_ABLD_WINSCW);
|
||||
else if (ProjectExplorer::ToolChain::RVCT_ARMV5 == type ||
|
||||
ProjectExplorer::ToolChain::RVCT_ARMV6 == type)
|
||||
setBuildParser(ProjectExplorer::Constants::BUILD_PARSER_ABLD_RVCT);
|
||||
else
|
||||
setBuildParser(ProjectExplorer::Constants::BUILD_PARSER_GCC);
|
||||
|
||||
|
Reference in New Issue
Block a user