trash/nice-os

Clone repo: git clone https://git.topcheto.eu/trash/nice-os.git
All branches, All tags, View raw

File contents

{
    "tasks": [
        {
            "label": "start-vm",
            "type": "shell",
            "command": "qemu-system-i386 -gdb tcp::6969 -S bin/image.bin",
            "isBackground": true,
            "problemMatcher": {
                "pattern": [
                  {
                    "regexp": ".",
                    "file": 1,
                    "location": 2,
                    "message": 3
                  }
                ],
                "background": {
                  "activeOnStart": true,
                  "beginsPattern": ".",
                  "endsPattern": ".",
                }
            },
            "dependsOn": [
                "build-debug",
            ]
        },
        {
            "label": "build-debug",
            "type": "shell",
            "command": "make debug-build",
            "problemMatcher": "$gcc"
        }
    ],
    "version": "2.0.0"
}