mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-01 10:15:21 +02:00
24 lines
563 B
JSON
24 lines
563 B
JSON
{
|
|
"comment": "Copy this to launch.json if you want to, or edit as desired first",
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "(lldb) Launch",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "",
|
|
"osx": {
|
|
"program": "${workspaceFolder}/build/PPSSPPSDL.app/Contents/MacOS/PPSSPPSDL"
|
|
},
|
|
"linux": {
|
|
"program": "${workspaceRoot}/build/PPSSPPSDL"
|
|
},
|
|
"args": [],
|
|
"stopAtEntry": false,
|
|
"cwd": "${workspaceFolder}",
|
|
"environment": [],
|
|
"externalConsole": false,
|
|
"MIMode": "lldb"
|
|
}
|
|
]
|
|
} |