mirror of
https://gitee.com/openharmony/third_party_rust_cxx
synced 2024-11-23 07:10:29 +00:00
30 lines
724 B
JSON
30 lines
724 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|