Files
sdl_template/.vscode/launch.json
2025-02-17 18:31:08 +01:00

27 lines
833 B
JSON

{
"version": "2.0.0",
"configurations": [
{
"name": "(lldb) debug project",
"type": "lldb",
"request": "launch",
"env": {
"DEBUG": "1",
"ASAN_OPTIONS": "detect_leaks=0",
"UBSAN_OPTIONS": "print_stacktrace=1:halt_on_error=1",
},
"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/"
},
}
]
}