iOS: Fixes false warnings about iOS kit and Qt version

iOS Qt version complains about missing compilers and the corresponding kit
complains about unsupported device

Task-number: QTCREATORBUG-16472
Change-Id: Ie2185e33ec5043de0230a325b48b21dc1a25109e
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Vikas Pachdha
2016-09-20 15:59:56 +02:00
parent ff963bc184
commit 1b7ea8437d
5 changed files with 14 additions and 4 deletions

View File

@@ -135,6 +135,11 @@ Core::Id ToolChain::typeId() const
return d->m_typeId;
}
QList<Abi> ToolChain::supportedAbis() const
{
return { targetAbi() };
}
bool ToolChain::canClone() const
{
return true;