This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
justhomework/.vscode/launch.json

28 lines
830 B
JSON
Raw Normal View History

2021-10-03 02:28:37 +00:00
{
"version": "0.2.0",
2021-10-21 12:58:58 +00:00
"label": "Compile",
2021-10-03 02:28:37 +00:00
"configurations": [
{
2021-10-21 12:58:58 +00:00
"name": "g++.exe",
"label": "Compile",
2021-10-03 02:28:37 +00:00
"type": "cppdbg",
"request": "launch",
"program": "${fileDirname}\\${fileBasenameNoExtension}.exe",
"args": [],
"stopAtEntry": false,
"cwd": "C:/Project/mingw64/bin",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "C:\\Project\\mingw64\\bin\\gdb.exe",
"setupCommands": [
{
2021-10-29 08:50:06 +00:00
"description": "gdb",
2021-10-03 02:28:37 +00:00
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
2021-10-21 12:58:58 +00:00
"preLaunchTask": "Compile"
2021-10-03 02:28:37 +00:00
}
]
}