24 lines
534 B
JSON
24 lines
534 B
JSON
{
|
|
"configurations": {
|
|
"C++ - Attach Local Process": {
|
|
"adapter": "vscode-cpptools",
|
|
"variables": {
|
|
"PID": {
|
|
"shell": [ "GetPIDForProcess", "${processName}" ]
|
|
}
|
|
},
|
|
"configuration": {
|
|
"name": "test",
|
|
"request": "attach",
|
|
"program": "${binary}",
|
|
"processId": "${PID}",
|
|
|
|
"type": "cppdbg",
|
|
"stopAtEntry": true,
|
|
"setupCommands": [
|
|
{ "text": "source ${initFile}", "ignoreFailures": true }
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|