langtoncant/.vscode/tasks.json
Bjorn Einar Bjarntes f913d0ff65 more optimization
2021-12-19 13:29:54 +01:00

26 lines
No EOL
516 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 with optimization",
"type": "shell",
"command": "cl65 src/main.c -o out/program.c64 -Oi && x64sc.exe out/program.c64",
"problemMatcher": []
}
]
}