 {  "tasks": [
        {
            "type": "shell",
            "label": "Build C++ file",
            "command": "g++",
            "args": [
                "-o",
                "mHook",
                "mouseHook.cc",
                "-lm"
            ],
            "options": {
                "cwd": "${workspaceFolder}"
            },
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ],
    "version": "2.0.0"
}