win32api-linux-dev-template/.vscode/launch.json
2023-10-24 17:34:40 +03:00

29 lines
1.1 KiB
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"args": [],
"cwd": "${workspaceFolder}",
"environment": [],
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/i686-w64-mingw32-gdb",
"debugServerArgs": "Z:/usr/share/win32/gdbserver.exe localhost:1111 ${command:cmake.launchTargetPath} ${command:cmake.launchTargetPath} arg1 arg2",
"miDebuggerServerAddress": "localhost:1111",
"serverStarted":"Listening\\ on\\ port\\ \\d*",
"debugServerPath": "${workspaceFolder}/.vscode/wine-ru_RU.cp1251",
"filterStderr":true,
"filterStdout":false,
"logging": {
"moduleLoad": true,
"programOutput": true,
"exceptions": true
},
"preLaunchTask": "pkill gdbserver",
"postDebugTask": "pkill gdbserver"
}
]
}