Files
nob/.vscode/tasks.json
T
Nils O. Selåsdal fc7253e412 More stuff
2026-06-05 01:11:49 +02:00

17 lines
412 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "${workspaceFolder}/build.sh && ./a.out",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}