make vs code find ros headers + have exetensions ready

This commit is contained in:
Niklas Halle 2025-03-29 14:11:11 +01:00
parent 48acaebc54
commit e67d0cfda2
3 changed files with 40 additions and 9 deletions

18
.vscode/c_cpp_properties.json vendored Normal file
View file

@ -0,0 +1,18 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"/opt/ros/foxy/include/**"
],
"defines": [],
"compilerPath": "/usr/bin/clang-18",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "linux-clang-x64",
"configurationProvider": "ms-vscode.cmake-tools"
}
],
"version": 4
}