1
0
UAHCode/CPE455/lab02/.vscode/launch.json

28 lines
714 B
JSON
Raw Permalink Normal View History

2022-08-28 21:12:16 +00:00
{
"version": "0.2.0",
"configurations": [
{
"name": "C/C++ Runner: Debug Session",
"type": "cppdbg",
"request": "launch",
"args": [
""
],
"stopAtEntry": false,
"cwd": "/home/student/anw0044/CPE455/lab02",
"environment": [],
"program": "/home/student/anw0044/CPE455/lab02/build/Debug/outDebug",
"internalConsoleOptions": "openOnSessionStart",
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb",
"externalConsole": false,
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}