1
0
mirror of synced 2026-02-09 18:02:00 +00:00

Add build script for SDPP.

This commit is contained in:
Matthieu Bucchianeri
2024-10-13 01:14:48 -07:00
parent b211af42e2
commit 1e54937295
3 changed files with 39 additions and 0 deletions

20
XTMax/Apps/SDPP/.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,20 @@
{
// 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
}
}
]
}