ClangCodeModel: Bump minimum clangd version

We need clangd >= 14 to get rid of the cumbersome compile_commands.json
creation.

Change-Id: I30c19a385e2d76e478985f3df64968d1cb3efe87
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
Christian Kandeler
2022-05-02 17:18:46 +02:00
parent eec77fa67a
commit 780f89b377
4 changed files with 9 additions and 57 deletions

View File

@@ -337,7 +337,7 @@ ClangdSettings::ClangdSettings()
bool ClangdSettings::useClangd() const
{
return m_data.useClangd && clangdVersion() >= QVersionNumber(13);
return m_data.useClangd && clangdVersion() >= QVersionNumber(14);
}
void ClangdSettings::setDefaultClangdPath(const FilePath &filePath)