1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-26 06:53:52 +01:00

Merge pull request #20417 from maribu/vscode/hardcode_compile_commands

vscode: Add hard-coded path to compile_commands.json
This commit is contained in:
Marian Buschsieweke 2024-02-22 16:41:52 +00:00 committed by GitHub
commit f9de5fd13c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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
}