{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "Clean up", "type": "shell", "windows": { "command": "./.vscode/tasks/windows/cleanup.bat" }, "linux": { "command": "bash ./.vscode/tasks/linux/cleanup.sh" }, "problemMatcher": [] }, { "label": "Build", "type": "shell", "windows": { "command": "./.vscode/tasks/windows/build.bat" }, "linux": { "command": "bash ./.vscode/tasks/linux/build.sh" }, "problemMatcher": [], "group": { "kind": "build", "isDefault": true } }, { "label": "Test", "type": "shell", "windows": { "command": "./.vscode/tasks/windows/test.bat" }, "linux": { "command": "bash ./.vscode/tasks/linux/test.sh" }, "problemMatcher": [] }, { "label": "Configure Setup", "type": "shell", "windows": { "command": "./.vscode/tasks/windows/configure_setup.bat" }, "problemMatcher": [] }, { "label": "Install requirements", "type": "shell", "windows": { "command": "./.vscode/tasks/windows/install_requirements.bat" }, "linux": { "command": "bash ./.vscode/tasks/linux/install_requirements.sh" }, "problemMatcher": [] }, { "label": "Run", "type": "shell", "windows": { "command": "./.vscode/tasks/windows/run.bat" }, "linux": { "command": "bash ./.vscode/tasks/linux/run.sh" }, "problemMatcher": [] } ] }