diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000000000000000000000000000000000000..28cc603f7167c66d1ceccc4ee729bb65512fe965 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,17 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**" + ], + "defines": [], + "compilerPath": "/usr/bin/gcc", + "cStandard": "c11", + "cppStandard": "c++20", + "intelliSenseMode": "gcc-x64", + "compileCommands": "/home/cyrille/ros2_ws/build/ros_pralin_interfaces/compile_commands.json" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000000000000000000000000000000000000..7eb4bd513c58ab0b5589056cdcafd091b119d11d --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,14 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build ros_pralin_interfaces", + "type": "shell", + "command": "cd ~/ros2_ws; colcon build --cmake-args -DCMAKE_EXPORT_COMPILE_COMMANDS=On --paths src/ros_pralin_interfaces", + "group": "build", + "presentation": { + "clear": true + } + } + ] +} \ No newline at end of file