tasks.json 806 Bytes
// See https://go.microsoft.com/fwlink/?LinkId=733558 
// for the documentation about the tasks.json format
{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "msvc build",
            "type": "shell",
            "command": "cl.exe",
            "args": [
                "/favor:AMD64",
                "/c",
                "/I","${workspaceFolder}/src/include",
                "/I","${env:VCPKG_ROOT}/x64-windows/include",
                "/I","${env:VCPKG_ROOT}/x64-windows-static/include",
                "${file}"
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "presentation": {
                "reveal": "always"
            },
            "problemMatcher": "$msCompile"
        }
    ]
  }