Files
breakout_clone/.vscode/launch.json

32 lines
742 B
JSON

{
"version": "2.0.0",
"configurations": [
{
"name": "(lldb) debug project",
"type": "lldb",
"request": "launch",
"program": "",
"linux": {
"program": "make",
"args": [
"run"
],
"env": {
"ARCH": "linux-x86_64",
"DEBUG": "1",
},
},
"windows": {
"program": "make",
"args": [
"run"
],
"env": {
"ARCH": "win-x86_64",
"DEBUG": "1",
},
},
}
]
}