BuildSystem: Export compile commands for clangd

This commit is contained in:
2024-09-26 15:14:54 +03:00
parent b89fc3fe87
commit e6ed5a388d
3 changed files with 21 additions and 2 deletions

View File

@@ -2,5 +2,9 @@
"cmake.configureOnOpen": false,
"editor.tabSize": 4,
"editor.insertSpaces": false,
"editor.detectIndentation": false
}
"editor.detectIndentation": false,
"clangd.arguments": [
"--compile-commands-dir=${workspaceFolder}/build",
"-header-insertion=never"
]
}