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, + }, ], }, }