This repository has been archived on 2024-02-12. You can view files and clone it, but cannot push or open issues or pull requests.
robosoutez-2023/.vscode/tasks.json
2023-11-09 15:24:40 +01:00

60 lines
1.4 KiB
JSON

{
// Support task for EV3RT and EV3CXX
// Author: Jaroslav Páral (jarekparal)
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "C:\\RB3rt\\Make.bat",
"args": [
"-b",
"${fileDirname}"
],
"problemMatcher": [],
"group": {
"_id": "build",
"isDefault": false
}
},
{
"label": "upload",
"type": "shell",
"command": "C:\\RB3rt\\Make.bat",
"args": [
"-u"
],
"problemMatcher": []
},
{
"label": "make",
"type": "shell",
"command": "C:\\RB3rt\\Make.bat",
"args": [
"-m",
"${fileDirname}"
],
"problemMatcher": []
},
{
"label": "lorris",
"type": "shell",
"command": "c:\\Lorris\\Lorris.exe",
"args": [
""
],
"problemMatcher": []
},
{
"label": "help",
"type": "shell",
"command": "start",
"args": [
"",
"https://rb3rt.readthedocs.org"
],
"problemMatcher": []
}
]
}