This website works better with JavaScript.
Home
Explore
Help
Sign In
MNT
/
zz9000-sdk
Watch
2
Star
1
Fork
1
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Added LHA Pack option in VSCode Tasks, and in Windows script
pull/2/head
Dimitris Panokostas
1 year ago
parent
d681430a69
commit
356c73fae2
2 changed files
with
16 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+13
-0
zz9k-loader/.vscode/tasks.json
+3
-0
zz9k-loader/build.cmd
+ 13
- 0
zz9k-loader/.vscode/tasks.json
View File
@@ -21,6 +21,19 @@
}
},
{
"label": "LHA Pack",
"type": "shell",
"windows": {
"command": "lha a zz9k.lha zz9k"
},
"osx": {
"command": "lha a zz9k.lha zz9k"
},
"linux": {
"command": "lha a zz9k.lha zz9k"
}
},
{
"label": "Clean",
"type": "shell",
"windows": {
+ 3
- 0
zz9k-loader/build.cmd
View File
@@ -8,3 +8,6 @@ REM
REM Please adapt the script accordingly if your environment is different
REM
vc +aos68k -I"D:\vbcc\P96\Include" -c99 -O2 -o .\zz9k .\zz9k.c -lamiga -lauto
del zz9k.lha
lha a zz9k.lha zz9k
Write
Preview
Loading…
Cancel
Save