mirror of
https://github.com/spencershepard/RotorOps.git
synced 2025-11-10 15:45:30 +00:00
* updated requirements.txt according to GRIMM's instructions * added launch configuration and build tasks for VS Code * updated build scripts and documentation
22 lines
606 B
JSON
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",
|
|
}
|
|
]
|
|
} |