mirror of
https://github.com/thepigeongenerator/breakout_clone.git
synced 2025-12-16 14:05:44 +01:00
32 lines
742 B
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",
|
|
},
|
|
},
|
|
}
|
|
]
|
|
}
|