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": [ "configurations": [
{ {
"name": "Python: Current File", "name": "Python: Current File",
"type": "python", "type": "debugpy",
"request": "launch", "request": "launch",
"program": "${file}", "program": "${file}",
"console": "integratedTerminal", "console": "integratedTerminal",
"justMyCode": true "justMyCode": true,
"sudo": true
} }
] ]
} }
+8 -5
View File
@@ -4,13 +4,16 @@
"version": "2.0.0", "version": "2.0.0",
"tasks": [ "tasks": [
{ {
"label": "Build", "label": "Windows Build",
"type": "shell", "type": "shell",
"command": "cmd.exe /c build.bat", "command": "cmd.exe /c build.bat",
"group": { "group": "build"
"kind": "build", },
"isDefault": true {
} "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