{ "configurations": [ { "name": "Launch with puzzle input", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/build/C_Template", "args": ["../puzzle.input"], "stopAtEntry": true, "cwd": "${workspaceFolder}/build/", "setupCommands": [ { "description": "Enable pretty-printing for gdb", "text": "-enable-pretty-printing", "ignoreFailures": true } ], "preLaunchTask": "build", }, { "name": "Launch with test input", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/build/C_Template", "args": ["../test.input"], "stopAtEntry": true, "cwd": "${workspaceFolder}/build/", "setupCommands": [ { "description": "Enable pretty-printing for gdb", "text": "-enable-pretty-printing", "ignoreFailures": true } ], "preLaunchTask": "build", } ] }