From 048b5175a3c817df192f35a082ce44c6c77f7fed Mon Sep 17 00:00:00 2001 From: TheSlowGrowth <9356320+TheSlowGrowth@users.noreply.github.com> Date: Tue, 16 Nov 2021 22:01:30 +0100 Subject: [PATCH] update vscode config --- .vscode/c_cpp_properties.json | 3 ++- .vscode/extensions.json | 6 ++++++ .vscode/launch.json | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 .vscode/extensions.json diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json index 4d81127..fc066c0 100644 --- a/.vscode/c_cpp_properties.json +++ b/.vscode/c_cpp_properties.json @@ -34,7 +34,8 @@ }, "compilerPath": "~/dev/gcc-arm-none-eabi-9-2020-q2-update/bin/arm-none-eabi-gcc", "cStandard": "c11", - "cppStandard": "gnu++17" + "cppStandard": "gnu++17", + "compileCommands": "${workspaceFolder}/plugin/build/compile_commands.json" }, { "name": "Win32", diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..a05a320 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,6 @@ +{ + "recommendations": [ + "davidschuldenfrei.gtest-adapter", + "ms-vscode.cpptools", + ] +} \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json index b58096d..606ba37 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -2,7 +2,7 @@ "version": "0.2.0", "configurations": [ { - "name": "C++ Launch", + "name": "Launch Firmware", "type": "cppdbg", "request": "launch", "program": "${workspaceRoot}/firmware/build/TapeLooper.elf",