99 lines
2.9 KiB
JSON
99 lines
2.9 KiB
JSON
{
|
|
// 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": "Clean up everything",
|
|
"type": "shell",
|
|
"windows": {
|
|
"command": "./.vscode/tasks/windows/cleanup_everything.bat"
|
|
},
|
|
"linux": {
|
|
"command": "bash ./.vscode/tasks/linux/cleanup_everything.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"
|
|
},
|
|
"linux": {
|
|
"command": "echo \"Not implemented\""
|
|
},
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "Install build requirements",
|
|
"type": "shell",
|
|
"windows": {
|
|
"command": "./.vscode/tasks/windows/install_build_requirements.bat"
|
|
},
|
|
"linux": {
|
|
"command": "bash ./.vscode/tasks/linux/install_build_requirements.sh"
|
|
},
|
|
"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": []
|
|
}
|
|
]
|
|
} |