mirror of
https://github.com/thepigeongenerator/tetris_clone.git
synced 2025-12-17 05:55:46 +01:00
22 lines
610 B
JSON
22 lines
610 B
JSON
{
|
|
"version": "2.0.0",
|
|
"configurations": [
|
|
{
|
|
"name": "(lldb) C Launch",
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"program": "",
|
|
"linux": {
|
|
"program": "${workspaceFolder}/bin/linux-x86_64/sdl_template",
|
|
"preLaunchTask": "build linux-x86_64"
|
|
},
|
|
"windows": {
|
|
"program": "${workspaceFolder}/bin/win-x86_64/sdl_template",
|
|
"preLaunchTask": "build win-x86_64"
|
|
},
|
|
"args": [],
|
|
"cwd": "${workspaceFolder}",
|
|
}
|
|
]
|
|
}
|