ProjectExplorer: Rename compiler includes from System to BuiltIn

System include are those used with -isystem keyword, built-in
includes on the other hand come from compiler and always
follow in the end of the include list (after system includes).

Change-Id: I95c2fec36d2e5b43f014fe0a88d59c6769edfa1f
Reviewed-by: Marco Bubke <marco.bubke@qt.io>
This commit is contained in:
Ivan Donchevskii
2018-09-17 11:29:32 +02:00
parent 3170d05087
commit 0bd095aa45
21 changed files with 89 additions and 80 deletions

View File

@@ -97,12 +97,12 @@ WarningFlags NimToolChain::warningFlags(const QStringList &) const
return WarningFlags::NoWarnings;
}
ToolChain::SystemHeaderPathsRunner NimToolChain::createSystemHeaderPathsRunner() const
ToolChain::BuiltInHeaderPathsRunner NimToolChain::createBuiltInHeaderPathsRunner() const
{
return ToolChain::SystemHeaderPathsRunner();
return ToolChain::BuiltInHeaderPathsRunner();
}
HeaderPaths NimToolChain::systemHeaderPaths(const QStringList &, const FileName &) const
HeaderPaths NimToolChain::builtInHeaderPaths(const QStringList &, const FileName &) const
{
return {};
}