RotorOps/.vscode/tasks.json
David Pierron e8bd6b2972
Quality of life (#50)
* updated requirements.txt according to GRIMM's instructions

* added launch configuration and build tasks for VS Code

* updated build scripts and documentation
2023-05-18 22:16:38 -07:00

22 lines
606 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build the Mission Generator (run build.bat)",
"type": "shell",
"command": "cd .\\Generator ; .\\build.bat -nopause",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Install the Python requirements (run install-requirements.bat)",
"type": "shell",
"command": "cd .\\Generator ; .\\install-requirements.bat -nopause",
}
]
}