1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 00:09:46 +01:00

vscode: Add hard-coded path to compile_commands.json

When run from Windows via WSL, VS Code just won't find the
`compile_commands.json` otherwise.
This commit is contained in:
Marian Buschsieweke 2024-02-22 15:47:18 +01:00
parent d83ec632e3
commit fb4c388d68
No known key found for this signature in database
GPG Key ID: 77AA882EC78084E6

11
.vscode/c_cpp_properties.json vendored Normal file
View File

@ -0,0 +1,11 @@
{
"configurations": [
{
"name": "RIOT",
"cStandard": "c11",
"cppStandard": "c++17",
"compileCommands": "${workspaceFolder}/compile_commands.json"
}
],
"version": 4
}