ClassicOS/.vs/tasks.vs.json

25 lines
457 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "shell",
"command": "nasm -f elf32 -o main.o main.asm && gcc -m32 -o main main.o",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": []
},
{
"label": "Run",
"type": "shell",
"command": "qemu-system-i386 -kernel main",
"group": {
"kind": "test",
"isDefault": true
},
"problemMatcher": []
}
]
}