Added a way to change the tool chain.

This commit is contained in:
Roberto Raggi
2009-03-12 13:50:43 +01:00
parent 90e12652b4
commit 7b6eb2c47e
6 changed files with 38 additions and 26 deletions

View File

@@ -59,6 +59,14 @@ QStringList ToolChain::availableMSVCVersions()
return versions;
}
QStringList ToolChain::supportedToolChains()
{
return QStringList() << QLatin1String("gcc")
<< QLatin1String("mingw")
<< QLatin1String("msvc")
<< QLatin1String("wince");
}
GccToolChain::GccToolChain(const QString &gcc)
: m_gcc(gcc)
{