more launcher defined

This commit is contained in:
Oliver Hartmann 2023-01-03 21:57:39 +01:00
parent 5826f141ad
commit 1f63d814ac

24
.vscode/launch.json vendored
View File

@ -1,7 +1,4 @@
{
// 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": [
@ -11,6 +8,27 @@
"request": "launch",
"program": "main.py",
"console": "integratedTerminal"
},
{
"name": "Test gui",
"type": "python",
"request": "launch",
"program": "tests/test_gui.py",
"console": "integratedTerminal"
},
{
"name": "Kivy gui",
"type": "python",
"request": "launch",
"program": "src/gui_kivy.py",
"console": "integratedTerminal"
},
{
"name": "QT gui",
"type": "python",
"request": "launch",
"program": "src/pyside6/gui_pyside6.py",
"console": "integratedTerminal"
}
]
}