-
Notifications
You must be signed in to change notification settings - Fork 0
/
vimspector.json
47 lines (47 loc) · 1.19 KB
/
vimspector.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"configurations": {
"C/C++ debug - lldb": {
"adapter": "vscode-cpptools",
"filetypes": [ "cpp", "c", "objc", "rust" ],
"configuration": {
"request": "launch",
"program": "${workspaceFolder}/bin/xxx",
"args": ["--gtest_filter='XxxTest'"],
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "lldb"
}
},
"Go debug": {
"adapter": "delve",
"filetypes": [ "go" ],
"variables": {},
"configuration": {
"request": "launch",
"stopOnEntry": true,
"program": "${fileDirname}",
"buildFlags": "-tags=dynamic",
"mode": "debug",
"env": {
"PKG_CONFIG_PATH": "/opt/homebrew/opt/openssl@3/lib/pkgconfig"
}
}
},
"Go test": {
"adapter": "delve",
"filetypes": [ "go" ],
"variables": {},
"configuration": {
"request": "launch",
"stopOnEntry": true,
"program": "${fileDirname}",
"buildFlags": "-tags=dynamic,mock",
"mode": "test",
"env": {
"PKG_CONFIG_PATH": "/opt/homebrew/opt/openssl@3/lib/pkgconfig"
}
}
}
}
}