third_party_rust_cxx/.vscode/launch.json

30 lines
724 B
JSON
Raw Normal View History

2020-09-23 21:00:46 +00:00
{
"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"
}
}
2021-01-02 19:34:23 +00:00
}
2020-09-23 21:00:46 +00:00
]
}