Add build script for SDPP.
This commit is contained in:
4
XTMax/Apps/SDPP/.gitignore
vendored
Normal file
4
XTMax/Apps/SDPP/.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
*.obj
|
||||||
|
*.map
|
||||||
|
*.sys
|
||||||
|
log.txt
|
||||||
20
XTMax/Apps/SDPP/.vscode/tasks.json
vendored
Normal file
20
XTMax/Apps/SDPP/.vscode/tasks.json
vendored
Normal 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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
15
XTMax/Apps/SDPP/Build.conf
Normal file
15
XTMax/Apps/SDPP/Build.conf
Normal 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
|
||||||
Reference in New Issue
Block a user