picom/.vscode/launch.json

26 lines
749 B
JSON
Raw Normal View History

{
"configurations": [
{
"targetArchitecture": "x64",
"name": "Debug with Meson",
"type": "cppdbg",
"request": "launch",
"cwd": "${workspaceRoot}",
"program": "${workspaceRoot}/build/src/picom",
"preLaunchTask": "build debug meson",
"stopAtEntry": false,
"launchCompleteCommand": "exec-run",
"linux": {
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb"
},
"osx": {
"MIMode": "lldb"
},
"windows": {
"MIMode": "gdb",
"miDebuggerPath": "C:\\MinGw\\bin\\gdb.exe"
}
}
]
}