Skip to content

Commit

Permalink
chore(vscode): add debug configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
lomirus committed May 30, 2022
1 parent 9233143 commit 2d9d9b6
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
// 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 executable 'gtk-qq'",
"cargo": {
"args": [
"build",
"--bin=gtk-qq",
"--package=gtk-qq"
],
"filter": {
"name": "gtk-qq",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'gtk-qq'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=gtk-qq",
"--package=gtk-qq"
],
"filter": {
"name": "gtk-qq",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}

0 comments on commit 2d9d9b6

Please sign in to comment.