add Build and Run and Debug LVGL demo with LLVM

This commit is contained in:
Gabor Kiss-Vamosi 2024-05-08 00:03:09 +02:00
parent d1f7c041c8
commit 3fb403ac0e

View File

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