64 lines
1.8 KiB
JSON
64 lines
1.8 KiB
JSON
{
|
|
// 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": "Unit Tests: zero-ui",
|
|
"cargo": {
|
|
"args": [
|
|
"test",
|
|
"--no-run",
|
|
"--lib",
|
|
"--package=zero-ui"
|
|
],
|
|
"filter": {
|
|
"name": "zero-ui",
|
|
"kind": "lib"
|
|
}
|
|
},
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Example: button",
|
|
"cargo": {
|
|
"args": [
|
|
"build",
|
|
"--example=button",
|
|
"--package=zero-ui"
|
|
],
|
|
"filter": {
|
|
"name": "button",
|
|
"kind": "example"
|
|
}
|
|
},
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
{
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"name": "Example: screenshot",
|
|
"cargo": {
|
|
"args": [
|
|
"build",
|
|
"--example=screenshot",
|
|
"--package=zero-ui"
|
|
],
|
|
"filter": {
|
|
"name": "screenshot",
|
|
"kind": "example"
|
|
}
|
|
},
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}"
|
|
},
|
|
]
|
|
} |