Skip to content

Commit

Permalink
feat: add launch config
Browse files Browse the repository at this point in the history
  • Loading branch information
bujosa committed Sep 8, 2023
1 parent af8e492 commit abfc5c0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug with LLDB",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/target/debug/leetcode",
"args": [],
"cwd": "${workspaceFolder}",
"sourceLanguages": ["rust"],
"cargo": {
"args": ["build"],
"filter": {
"name": "leetcode"
}
}
}
]
}

0 comments on commit abfc5c0

Please sign in to comment.