27 lines
768 B
JSON
27 lines
768 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "make",
|
|
"type": "shell",
|
|
"command": "PATH=\"$PATH:/opt/cross/bin\" make",
|
|
"problemMatcher": ["$gcc"],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "Launch QEMU (i386)",
|
|
"type": "shell",
|
|
"command": "qemu-system-i386 -hda /opt/quark-os/quark.img -serial stdio -s -S",
|
|
"isBackground": true,
|
|
"group": {
|
|
"kind": "test",
|
|
"isDefault": true
|
|
}
|
|
}
|
|
]
|
|
} |