Meta: Update contributing doc location in README
[link.git] / .vscode / launch.json
blob674d60bbf00a733bc8e7bc846ee65e42c52eddd8
2     // Use IntelliSense to learn 
3     // about possible attributes.
4     // Hover to view descriptions 
5     // of existing attributes.
6     // For more information, visit: 
7     // https://go.microsoft.com/fwlink/?linkid=830387
8     "version": "0.2.0",
9     "configurations": [
10         {
11             "name": "Debug (LLVM)",
12             "type": "cppdbg",
13             "request": "launch",
14             "program": "${workspaceFolder}/linktest",
15             "args": [],
16             "stopAtEntry": false,
17             "cwd": "${workspaceFolder}",
18             "environment": [],
19             "externalConsole": false,
20             "MIMode": "lldb",
21             "miDebuggerPath": "lldb-mi",
22             "setupCommands": [
23                 {
24                     "description": "Enable pretty-printing for gdb",
25                     "text": "-enable-pretty-printing",
26                     "ignoreFailures": true
27                 }
28             ],
29             "preLaunchTask": "Ninja"
30         },
31     ]