1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 00:49:45 +01:00
RIOT/.vscode/c_cpp_properties.json
Marian Buschsieweke fb4c388d68
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.
2024-02-22 15:47:18 +01:00

12 lines
242 B
JSON

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