cleanup, full path to executable

This commit is contained in:
Gregor Copoix 2024-03-23 16:52:18 +01:00
parent a82f4eabaa
commit 4dc6b04eb8

View File

@ -23,13 +23,7 @@
"files.trimTrailingWhitespace": true, "files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true, "files.insertFinalNewline": true,
"files.trimFinalNewlines": true, "files.trimFinalNewlines": true,
"cmake.configureOnOpen": false, "cmake.configureOnOpen": true,
"files.associations": {
"lv_demos.h": "c",
"lvgl.h": "c",
"lv_drv_conf.h": "c",
"stdlib.h": "c"
},
}, },
// tasks.json section // tasks.json section
"tasks": { "tasks": {
@ -68,7 +62,7 @@
"name": "Debug LVGL demo with gdb", "name": "Debug LVGL demo with gdb",
"type": "cppdbg", "type": "cppdbg",
"request": "launch", "request": "launch",
"program": "bin/main", "program": "${workspaceFolder}/bin/main",
"args": [], "args": [],
"cwd": "${workspaceFolder}", "cwd": "${workspaceFolder}",
"preLaunchTask": "Build", "preLaunchTask": "Build",