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
This commit is contained in:
David Pierron
2023-05-19 07:16:38 +02:00
committed by GitHub
parent bca47d63d6
commit e8bd6b2972
6 changed files with 110 additions and 2 deletions

16
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Run MissionGenerator.py",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/Generator/MissionGenerator.py",
"console": "integratedTerminal",
"justMyCode": true
}
]
}

22
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,22 @@
{
// 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",
}
]
}