Files
LCE-Qt-Launcher/.vscode/launch.json
2026-04-18 22:26:34 -04:00

29 lines
1.1 KiB
JSON

{
// 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": "PySide: Build and Launch (GNU/Linux)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/src/lce_qt_launcher/main.py",
"preLaunchTask": "PySide: build (GNU/Linux)"
},
{
"name": "PySide: Build and Launch (Windows)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/src/lce_qt_launcher/main.py",
"preLaunchTask": "PySide: build (Windows)"
},
{
"name" : "Pyside : Sync Virtual Env and Launch",
"type" : "debugpy",
"request": "launch",
"program": "${workspaceFolder}/src/lce_qt_launcher/main.py",
"preLaunchTask": "Python: Sync Virtual Env"
}
]
}