Files
tp/.vscode/tasks.json
T

17 lines
296 B
JSON
Raw Normal View History

2024-10-12 22:43:10 -06:00
{
// Use Ctrl+Shift+B to run build tasks.
// Or "Run Build Task" in the Command Palette.
"version": "2.0.0",
"tasks": [
{
"label": "ninja",
"type": "shell",
"command": "ninja",
"group": {
"kind": "build",
"isDefault": true
}
},
]
}