SyncTk/.vscode/tasks.json

52 lines
1.4 KiB
JSON
Raw Normal View History

2023-01-26 11:58:20 +02:00
{
// 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": "./.vscode/tasks/linux/cleanup.sh"
},
2023-01-27 13:17:46 +02:00
"problemMatcher": []
},
{
"label": "Build",
"type": "shell",
"windows": {
"command": "./.vscode/tasks/windows/build.bat"
},
"linux": {
"command": "./.vscode/tasks/linux/build.sh"
},
2023-01-27 13:17:46 +02:00
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Test",
2023-01-27 13:17:46 +02:00
"type": "shell",
"windows": {
"command": "./.vscode/tasks/windows/test.bat"
},
"linux": {
"command": "./.vscode/tasks/linux/test.sh"
},
2023-01-26 11:58:20 +02:00
"problemMatcher": []
2023-01-27 14:55:57 +02:00
},
{
"label": "Configure Setup",
2023-01-27 14:55:57 +02:00
"type": "shell",
"windows": {
"command": "./.vscode/tasks/windows/configure_setup.bat"
},
2023-01-27 14:55:57 +02:00
"problemMatcher": []
},
2023-01-26 11:58:20 +02:00
]
}