Skip to content

Commit

Permalink
Update include paths and launch configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
JosefGst committed Apr 5, 2024
1 parent ccee32b commit 72ce05d
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@
"limitSymbolsToIncludedHeaders": false
},
"includePath": [
"${workspaceFolder}/**",
"/opt/ros/noetic/include/**"
"/opt/ros/noetic/include/**",
"/home/u/ros/template_ws/devel/include/**",
"/home/u/ros/template_ws/src/template_sub_pub/include/**",
"/usr/include/**"
],
"name": "ROS",
"intelliSenseMode": "gcc-x64",
Expand Down
20 changes: 19 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [

{
"name": "ROS: Launch",
"type": "ros",
"request": "launch",
"target": "${workspaceFolder}/src/template_sub_pub/launch/template.launch",
"target": "${workspaceFolder}/src/${input:pkg}/launch/${input:launch}.launch",
"preLaunchTask": "make_debug",
"launch": [
"rviz",
Expand All @@ -24,5 +25,22 @@
"type": "ros",
"request": "attach",
}
],
"inputs": [
{
"type": "pickString",
"id": "launch",
"description": "Select launch file",
"options": [
"template"
]
},
{
"type": "pickString",
"id": "pkg",
"description": "Select package",
"options": [
"template_sub_pub"
]}
]
}
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"ros.distro": "noetic",
"editor.tabSize": 8,
"editor.rulers": [120],
"python.analysis.extraPaths": ["/opt/ros/noetic/lib/python3/dist-packages"],
"files.associations": {
"condition_variable": "cpp",
"array": "cpp",
Expand Down
1 change: 1 addition & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
"purge",
"make"
],
"problemMatcher": []
},
{
"label": "purge",
Expand Down

0 comments on commit 72ce05d

Please sign in to comment.