lwshell/.vscode/launch.json

16 lines
422 B
JSON
Raw Normal View History

{
"version": "0.2.0",
"configurations": [
{
2022-10-31 10:24:56 +01:00
/* GDB must in be in the PATH environment */
"name": "(Windows) Launch",
"type": "cppdbg",
"request": "launch",
2022-05-18 23:54:43 +02:00
"program": "${command:cmake.launchTargetPath}",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
2022-05-18 20:37:14 +02:00
"environment": []
}
]
}