chore: added lldb debug config

This commit is contained in:
Observer KRypt0n_ 2023-05-05 14:50:31 +02:00
parent a122acb0b8
commit e4ea3215c4
No known key found for this signature in database
GPG key ID: 844DA47BA25FE1E2

26
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,26 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
"cargo": {
"args": [
"build",
"--bin=anime-game-launcher",
"--package=anime-game-launcher"
],
"filter": {
"name": "anime-game-launcher",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}