Newer
Older
Import / research / string-tables / .vscode / tasks.json
{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "Build C++ project",
            "type": "shell",
            "group": "build",
            "command": "cd ./build && make",
            "problemMatcher": []
        },
        {
            "label": "Build & run C++ project",
            "type": "shell",
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "command": "cd ./build && make && ./StringsTableTest",
            "problemMatcher": []
        },
        {
            "label": "Build CMake",
            "type": "shell",
            "group": "build",
            "command": "cd ./build && cmake build .."
        },
        {
            "label": "Compile Markdown",
            "type": "shell",
            "args": [],
            "command": "${command:extension.markdown-pdf: Export (PDF)}",

            "command2": "markdown-it README.md -o README.html",
            "presentation": {
                "reveal": "never",
                "panel": "shared",
            },
            "problemMatcher": []
        }
    ]
}