19a08080e4
Reviewed-by: erikj
18 lines
573 B
Plaintext
18 lines
573 B
Plaintext
// Configure cpptools IntelliSense
|
|
"C_Cpp.intelliSenseCachePath": "{{OUTPUTDIR}}/.vscode",
|
|
"C_Cpp.default.compileCommands": "{{OUTPUTDIR}}/compile_commands.json",
|
|
"C_Cpp.default.cppStandard": "c++14",
|
|
"C_Cpp.default.compilerPath": "{{COMPILER}}",
|
|
|
|
// Configure clangd
|
|
"clangd.arguments": [
|
|
"-background-index",
|
|
"-compile-commands-dir={{OUTPUTDIR}}"
|
|
],
|
|
|
|
// Disable conflicting features from cpptools
|
|
"C_Cpp.autocomplete": "Disabled",
|
|
"C_Cpp.errorSquiggles": "Disabled",
|
|
"C_Cpp.formatting": "Disabled",
|
|
"C_Cpp.intelliSenseEngine": "Disabled",
|