cxx/.vscode/launch.json
2020-09-24 09:04:42 -04:00

18 lines
401 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"
}
}
}
]
}