webCode/.vscode/launch.json

24 lines
598 B
JSON
Raw Permalink Normal View History

2023-10-05 10:09:31 +00:00
{
"version": "0.2.0",
"configurations": [
{
"name": "C/C++ Runner: Debug Session",
"type": "cppdbg",
"request": "launch",
"args": [],
"stopAtEntry": false,
"externalConsole": false,
2023-10-05 15:07:15 +00:00
"cwd": "/config/workspace/Luogu/P3957",
"program": "/config/workspace/Luogu/P3957/build/Debug/outDebug",
2023-10-05 10:09:31 +00:00
"MIMode": "gdb",
"miDebuggerPath": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}