You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
769 B
26 lines
769 B
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "C/C++",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${fileDirname}/${fileBasenameNoExtension}.exe",
|
|
"args": [],
|
|
"stopAtEntry": false,
|
|
"cwd": "${workspaceFolder}",
|
|
"environment": [],
|
|
"externalConsole": false,
|
|
"MIMode": "gdb",
|
|
"miDebuggerPath": "gdb.exe",
|
|
"preLaunchTask": "compile",
|
|
"setupCommands": [
|
|
{
|
|
"description": "Enable pretty-printing for gdb",
|
|
"text": "-enable-pretty-printing",
|
|
"ignoreFailures": true
|
|
}
|
|
],
|
|
},
|
|
]
|
|
}
|