Files
srs-spi/.vscode/tasks.json
2025-03-12 15:28:43 +08:00

25 lines
620 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build-windows",
"type": "shell",
"command": ".\\build.bat build",
"group": "build",
"presentation": {
"reveal": "always"
},
"problemMatcher": []
},
{
"label": "build-linux",
"type": "shell",
"command": "./build.sh build",
"group": "build",
"presentation": {
"reveal": "always"
},
"problemMatcher": []
}
]
}