rustray/.vscode/launch.json

26 lines
761 B
JSON
Raw Permalink Normal View History

2019-03-14 18:43:23 +00:00
{
// 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",
2019-04-15 14:18:45 +00:00
"name": "Debug executable 'rustray'",
2019-03-14 18:43:23 +00:00
"cargo": {
"args": [
2019-04-15 14:18:45 +00:00
"build",
"--bin=rustray",
"--package=rustray"
2019-03-14 18:43:23 +00:00
],
"filter": {
2019-04-15 14:18:45 +00:00
"name": "rustray",
2019-03-14 18:43:23 +00:00
"kind": "bin"
}
},
"args": [],
2019-04-15 14:18:45 +00:00
"cwd": "${workspaceFolder}"
2019-03-14 18:43:23 +00:00
}
]
}