Skip to content

Commit

Permalink
add a vscode launch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
sunshowers committed Oct 3, 2024
1 parent a0a01ec commit 6fb3d56
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
// 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 guppy against workspace",
"cargo": {
"args": [
"build",
"-p",
"cargo-guppy",
],
"filter": {
"name": "cargo-guppy",
"kind": "bin"
}
},
"args": ["cycles", "--manifest-path", "${input:workspaceDir}/Cargo.toml"],
"cwd": "${workspaceFolder}"
},
],
"inputs": [
{
"id": "workspaceDir",
"description": "Workspace directory",
"default": "${workspaceFolder}",
"type": "promptString"
},
]
}

0 comments on commit 6fb3d56

Please sign in to comment.