From 3fb403ac0edb45b12d0f5712d9ce19ae4b96821b Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Wed, 8 May 2024 00:03:09 +0200 Subject: [PATCH] add Build and Run and Debug LVGL demo with LLVM --- simulator.code-workspace | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/simulator.code-workspace b/simulator.code-workspace index 191fb59..7ffd7d0 100644 --- a/simulator.code-workspace +++ b/simulator.code-workspace @@ -52,6 +52,16 @@ } } }, + { + "label": "Build and Run", + "type": "shell", + "command": "${workspaceFolder}/bin/main", + "group": { + "kind": "test", + "isDefault": true + }, + "dependsOn": "Build" + } ], }, // launch.json section @@ -68,6 +78,16 @@ "preLaunchTask": "Build", "stopAtEntry": false, }, + { + "name": "Debug LVGL demo with LLVM", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceFolder}/bin/main", + "args": [], + "cwd": "${workspaceFolder}", + "preLaunchTask": "Build", + "stopAtEntry": false, + }, ], }, }