AdventOfCode/C_Tempate/.vscode/launch.json

25 lines
639 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"type": "cppdbg",
"request": "launch",
"args": [],
"stopAtEntry": true,
"cwd": "${workspaceFolder}/build",
"environment": [],
"externalConsole": false,
"linux": {
"MIMode": "gdb",
"miDebuggerPath": "gdb",
"program": "${workspaceFolder}/build/CTemplate",
"args": [
"../puzzle.input"
]
},
"preLaunchTask": "build"
}
]
}