52 lines
1.3 KiB
JSON
Raw Normal View History

2025-02-28 18:28:47 -05:00
{
"version": "2.0.0",
"tasks": [
{
2025-02-28 18:41:50 -05:00
"label": "Setup Virtual Environment",
2025-02-28 18:28:47 -05:00
"type": "shell",
"command": "${input:pythonPath}",
"args": ["setup.py"],
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
2025-02-28 18:41:50 -05:00
"label": "Run Build Script",
2025-02-28 18:28:47 -05:00
"type": "shell",
"command": "venv\\Scripts\\python.exe",
"args": [
"build.py"
],
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "🛠 Full Build",
"type": "shell",
"dependsOn": [
2025-02-28 18:41:50 -05:00
"Setup Virtual Environment",
"Run Build Script"
2025-02-28 18:28:47 -05:00
],
"dependsOrder": "sequence",
"problemMatcher": [],
"group": {
"kind": "build",
"isDefault": true
}
}
],
"inputs": [
{
"id": "pythonPath",
"type": "promptString",
"description": "Enter the full path to your Python executable",
"default": "C:\\Program Files\\Python39\\python.exe"
}
]
}