LiquidGUI [1.1.0.0] Dev

- Added build script for Linux.
This commit is contained in:
2024-07-08 23:25:29 +01:00
parent 495de03e39
commit aed37b7fae
3 changed files with 13 additions and 7 deletions
+3 -2
View File
@@ -6,11 +6,12 @@
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": true
"justMyCode": true,
"sudo": true
}
]
}
+8 -5
View File
@@ -4,13 +4,16 @@
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"label": "Windows Build",
"type": "shell",
"command": "cmd.exe /c build.bat",
"group": {
"kind": "build",
"isDefault": true
}
"group": "build"
},
{
"label": "Linux Build",
"type": "shell",
"command": "${workspaceFolder}/build.sh",
"group": "build"
}
]
}
Executable
+2
View File
@@ -0,0 +1,2 @@
#!/bin/bash
pyinstaller main.pyw --onefile --paths .venv\Lib\site-packages --name LiquidGUI