This repository has been archived on 2022-05-26. You can view files and clone it, but cannot push or open issues or pull requests.
calculator/.vscode/launch.json
2022-05-15 21:47:33 +02:00

26 lines
No EOL
784 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug c++ project",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}\\build\\build.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}\\build\\",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"miDebuggerPath": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "Build c++ project"
}
]
}