Skip to content

Commit

Permalink
VSCode debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Speykious committed Apr 25, 2024
1 parent ec4612c commit b6fe42c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'owoverlay'",
"cargo": {
"args": [
"build",
"--bin=owoverlay",
"--package=owoverlay"
],
"filter": {
"name": "owoverlay",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}

0 comments on commit b6fe42c

Please sign in to comment.