about summary refs log tree commit diff stats
path: root/rust/bf/.vscode/launch.json
blob: 33bcb3263ab31249ed12164f522a67ef91ecdfb6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "lldb",
            "request": "launch",
            "name": "Debug executable",
            "cargo": {
                "args": ["build"]
            },
            "args": ["src/hw.bf"],
            "cwd": "${workspaceFolder}"
        }
    ]
}