mirror of
https://github.com/thepigeongenerator/tetris_clone.git
synced 2025-12-17 14:05:45 +01:00
22 lines
646 B
JSON
22 lines
646 B
JSON
{
|
|
"version": "2.0.0",
|
|
"configurations": [
|
|
{
|
|
"name": "(lldb) debug project",
|
|
"type": "lldb",
|
|
"request": "launch",
|
|
"program": "",
|
|
"linux": {
|
|
"preLaunchTask": "(dbg) compile linux-x86_64",
|
|
"program": "bin/linux-x86_64/${workspaceFolderBasename}",
|
|
"cwd": "bin/linux-x86_64/"
|
|
},
|
|
"windows": {
|
|
"preLaunchTask": "(dbg) compile win-x86_64",
|
|
"program": "bin/win-x86_64/${workspaceFolderBasename}.exe",
|
|
"cwd": "bin/win-x86_64/"
|
|
},
|
|
}
|
|
]
|
|
}
|