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

4
XTMax/Apps/SDPP/.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
*.obj
*.map
*.sys
log.txt

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
}
}
]
}

View File

@@ -0,0 +1,15 @@
[autoexec]
@ECHO OFF
CLS
MOUNT C .
MOUNT D ..\..\Tools\BCC31
SET PATH=D:\
C:
MAKE > LOG.TXT
IF ERRORLEVEL 1 GOTO :ERROR
EXIT
:ERROR
TYPE LOG.TXT
ECHO Log saved to LOG.TXT
PAUSE
EXIT