From 4dc6b04eb8d69672af75a3ecc26eecc65d66f76e Mon Sep 17 00:00:00 2001 From: Gregor Copoix Date: Sat, 23 Mar 2024 16:52:18 +0100 Subject: [PATCH] cleanup, full path to executable --- simulator.code-workspace | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/simulator.code-workspace b/simulator.code-workspace index 60572a9..191fb59 100644 --- a/simulator.code-workspace +++ b/simulator.code-workspace @@ -23,13 +23,7 @@ "files.trimTrailingWhitespace": true, "files.insertFinalNewline": true, "files.trimFinalNewlines": true, - "cmake.configureOnOpen": false, - "files.associations": { - "lv_demos.h": "c", - "lvgl.h": "c", - "lv_drv_conf.h": "c", - "stdlib.h": "c" - }, + "cmake.configureOnOpen": true, }, // tasks.json section "tasks": { @@ -68,7 +62,7 @@ "name": "Debug LVGL demo with gdb", "type": "cppdbg", "request": "launch", - "program": "bin/main", + "program": "${workspaceFolder}/bin/main", "args": [], "cwd": "${workspaceFolder}", "preLaunchTask": "Build",