Add vscode debug target for clarity cli

This commit is contained in:
Matthew Little
2019-05-23 22:52:15 -04:00
parent e55743d997
commit f727539465

33
.vscode/launch.json vendored
View File

@@ -7,7 +7,7 @@
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'blockstack-core'",
"name": "Debug 'blockstack-core'",
"cargo": {
"args": [
"build",
@@ -21,13 +21,36 @@
},
"args": [],
"cwd": "${workspaceFolder}",
"sourceLanguages": ["rust"],
"sourceLanguages": [
"rust"
],
"terminal": "integrated"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'blockstack-core'",
"name": "Debug 'clarity'",
"cargo": {
"args": [
"build",
"--bin=clarity"
],
"filter": {
"name": "clarity",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}",
"sourceLanguages": [
"rust"
],
"terminal": "integrated"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in 'blockstack-core'",
"cargo": {
"args": [
"test",
@@ -44,7 +67,9 @@
"--nocapture"
],
"cwd": "${workspaceFolder}",
"sourceLanguages": ["rust"],
"sourceLanguages": [
"rust"
],
"terminal": "integrated"
}
]