Files
live-wallpaper/.vscode/launch.json

24 lines
707 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug live-wallpaper",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/debug/live-wallpaper",
"args": [
"${workspaceFolder}/samples/dry_rocky_gorge.lua"
],
"cwd": "${workspaceFolder}",
"environment": [],
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}