first commit, configure cmake

This commit is contained in:
Emanuele Trabattoni
2021-05-16 14:11:22 +02:00
parent 4d7f275ee8
commit b2b1fb8d97
7 changed files with 152 additions and 0 deletions

23
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,23 @@
{
// These settings tweaks to the cmake plugin will ensure
// that you debug using cortex-debug instead of trying to launch
// a Pico binary on the host
"cmake.statusbar.advanced": {
"debug": {
"visibility": "hidden"
},
"launch": {
"visibility": "hidden"
},
"build": {
"visibility": "hidden"
},
"buildTarget": {
"visibility": "hidden"
}
},
"cmake.buildBeforeRun": true,
"C_Cpp.default.configurationProvider": "ms-vscode.cmake-tools",
"cmake.configureOnOpen": true,
"cortex-debug.gdbPath": "gdb-multiarch"
}