1
0
mirror of synced 2026-01-19 01:28:08 +00:00
2024-10-28 18:30:37 -07:00

21 lines
552 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 in DOSBox",
"type": "shell",
"command": "..\\..\\Tools\\DOSBox\\DOSBox.exe -conf Build.conf",
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}