• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2    "version": "0.2.0",
3    "configurations": [
4        {
5            "name": "Run cxx demo",
6            "type": "lldb",
7            "request": "launch",
8            "cargo": {
9                "args": ["build", "--manifest-path", "demo/Cargo.toml"],
10                "filter": {
11                    "name": "demo",
12                    "kind": "bin"
13                }
14            }
15        },
16        {
17            "name": "Debug cargo tests",
18            "type": "lldb",
19            "request": "launch",
20            "cargo": {
21                "args": ["test", "--no-run"],
22                "filter": {
23                    "name": "test",
24                    "kind": "test"
25                }
26            }
27        }
28    ]
29}
30