mirror of
https://github.com/thepigeongenerator/sdl_template.git
synced 2025-12-17 14:05:46 +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",
|
|
},
|
|
},
|
|
}
|
|
]
|
|
}
|