lwmem/.vscode/launch.json

16 lines
422 B
JSON
Raw Normal View History

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