lwmem/.vscode/launch.json

20 lines
688 B
JSON
Raw Normal View History

2021-12-13 09:40:04 +01:00
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(Windows) Launch",
"type": "cppdbg",
2021-12-13 09:40:04 +01:00
"request": "launch",
2021-12-13 18:35:04 +01:00
"program": "${workspaceFolder}\\build\\LwLibPROJECT.exe",
2021-12-13 09:40:04 +01:00
"miDebuggerPath": "c:\\msys64\\mingw64\\bin\\gdb.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"console": "integratedTerminal"
}
]
}