2048-homework/.vscode/launch.json

16 lines
517 B
JSON
Raw Permalink Normal View History

2021-11-15 08:57:27 +00:00
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug",
2021-12-24 13:02:00 +00:00
"program": "${workspaceFolder}/builddir/src/2048",
2021-12-28 20:34:06 +00:00
"args": ["--y", "4", "--x", "4"],
2021-11-15 08:57:27 +00:00
"cwd": "${workspaceFolder}"
}
]
}