projet-transversal/.vscode/launch.json
2022-12-09 15:36:13 +01:00

20 lines
455 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/src/main.py",
// "program": "${workspaceFolder}/bite.py",
"console": "integratedTerminal",
"justMyCode": true,
"env": {
"QT_QPA_PLATFORM": "xcb",
"SDL_VIDEODRIVER": "x11",
"PYGAME_HIDE_SUPPORT_PROMPT": "hide"
}
}
]
}