Files
LCE-Qt-Launcher/.vscode/tasks.json

28 lines
739 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "PySide: build (GNU/Linux)",
"type": "shell",
"command": "${workspaceFolder}/scripts/build.sh",
"group": "build",
"problemMatcher": []
},
{
"label": "PySide: build (Windows)",
"type": "shell",
"command":"${workspaceFolder}/scripts/build.ps1",
"group": "build",
"problemMatcher": []
},
{
"label": "Python: Sync Virtual Env",
"type": "shell",
"command": "${command:python.interpreterPath} -m pip install -e .",
"group": "build",
"problemMatcher": []
}
]
}