23 lines
549 B
JSON
23 lines
549 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Debug C++ (input.inp)",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/${fileBasenameNoExtension}",
|
|
"args": ["<", "${fileBasenameNoExtension}.inp"],
|
|
"cwd": "${workspaceFolder}",
|
|
"preLaunchTask": "Build C++",
|
|
"MIMode": "gdb",
|
|
"externalConsole": false,
|
|
"setupCommands": [
|
|
{
|
|
"description": "Enable pretty printing",
|
|
"text": "-enable-pretty-printing"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|