langtoncant/.vscode/tasks.json
Bjorn Einar Bjarntes 91574f690c get rid of it
2021-12-18 14:16:34 +01:00

25 lines
No EOL
470 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Make out",
"type": "shell",
"command": "mkdir out"
},
{
"label": "Build program",
"type": "shell",
"command": "cl65 src/main.c -o out/program.c64"
},
{
"label": "Run program",
"type": "shell",
"command": " x64sc.exe out/program.c64"
},
{
"label": "Build & run program",
"type": "shell",
"command": "cl65 src/main.c -o out/program.c64 && x64sc.exe out/program.c64"
}
]
}