Files
sdl_template/.vscode/tasks.json

16 lines
350 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "(dbg) compile linux-x86_64",
"type": "shell",
"command": "DEBUG=1 make linux-x86_64",
},
{
"label": "(dbg) compile win-x86_64",
"type": "shell",
"command": "DEBUG=1 make win-x86_64",
}
]
}