Skip to content
Snippets Groups Projects
Commit 3e4181e7 authored by Dimitris Panokostas's avatar Dimitris Panokostas
Browse files

Added VSCode tasks for Building and Cleaning, for Windows, Linux, MacOS platforms

parent 4d4d571c
No related branches found
No related tags found
No related merge requests found
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "shell",
"windows": {
"command": "vc +aos68k -ID:\\vbcc\\cybergraphics\\include -o .\\zz9k .\\zz9k.c -lamiga -lauto"
},
"osx": {
"command": "vc +aos68k -I/opt/vbcc/cybergraphics/include -o ./zz9k ./zz9k.c -lamiga -lauto"
},
"linux": {
"command": "vc +aos68k -I/opt/vbcc/cybergraphics/include -o ./zz9k ./zz9k.c -lamiga -lauto"
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Clean",
"type": "shell",
"windows": {
"command": "del .\\zz9k"
},
"osx": {
"command": "rm ./zz9k"
},
"linux": {
"command": "rm ./zz9k"
}
}
]
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment