Feat:#276 add dll debug support (#283)
Detail:if target is a program full path,pass it.
so with the user debug configuration as follows, user can debug dll which
the target exe load.
{
"version": "0.2.0",
"configurations": [
{
"type": "xmake",
"request": "launch",
"name": "launch exe to debug dll",
"target": "D:\\xxx.exe",
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
}
]
}
Co-authored-by: 冯金福 <[email protected]>