You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
724 B
30 lines
724 B
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Run cxx demo",
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"cargo": {
|
|
"args": ["build", "--manifest-path", "demo/Cargo.toml"],
|
|
"filter": {
|
|
"name": "demo",
|
|
"kind": "bin"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"name": "Debug cargo tests",
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"cargo": {
|
|
"args": ["test", "--no-run"],
|
|
"filter": {
|
|
"name": "test",
|
|
"kind": "test"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|