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.old
2023-11-09 15:24:40 +01:00

42 lines
1.2 KiB
JSON

{
// Support task for EV3RT and EV3CXX
// Author: Jaroslav Páral (jarekparal)
"version": "0.1.0",
"tasks": [
{
"taskName": "build",
"command": "C:\\RB3rt\\Make.bat",
"isShellCommand": true,
"args": ["-b", "${fileDirname}"],
"showOutput": "always"
},
{
"taskName": "upload",
"command": "C:\\RB3rt\\Make.bat",
"isShellCommand": true,
"args": ["-u"],
"showOutput": "always"
},
{
"taskName": "make",
"command": "C:\\RB3rt\\Make.bat",
"isShellCommand": true,
"args": ["-m", "${fileDirname}"],
"showOutput": "always"
},
{
"taskName": "lorris",
"command": "c:\\Lorris\\Lorris.exe",
"isShellCommand": true,
"args": [""],
"showOutput": "always"
},
{
"taskName": "help",
"command": "start",
"isShellCommand": true,
"args": ["", "https://rb3rt.readthedocs.org"],
"showOutput": "always"
}
]
}