Add icon made by @DamiDoop, should be built with it on macOS and Windows now

This commit is contained in:
2024-06-26 19:26:39 -04:00
parent 1404d083f4
commit f891965812
4 changed files with 10 additions and 7 deletions

View File

@@ -39,17 +39,17 @@ Then, use the command for your platform to build an executable with Nuitka:
**Windows**
```
nuitka --show-progress --include-data-dir=data=data --assume-yes-for-downloads --onefile --plugin-enable=pyside6 NUSGet.py --disable-console
nuitka --show-progress --include-data-dir=data=data --include-data-dir=resources=resources --assume-yes-for-downloads --onefile --windows-icon-from-ico=resources/icon.png --plugin-enable=pyside6 NUSGet.py --disable-console
```
**Linux**
```
nuitka3 --show-progress --include-data-dir=data=data --assume-yes-for-downloads --onefile --plugin-enable=pyside6 NUSGet.py
nuitka3 --show-progress --include-data-dir=data=data --include-data-dir=resources=resources --assume-yes-for-downloads --onefile --plugin-enable=pyside6 NUSGet.py
```
**macOS**
```
nuitka3 --show-progress --include-data-dir=data=data --assume-yes-for-downloads --onefile --plugin-enable=pyside6 NUSGet.py --macos-create-app-bundle --disable-console
nuitka3 --show-progress --include-data-dir=data=data --include-data-dir=resources=resources --assume-yes-for-downloads --onefile --plugin-enable=pyside6 NUSGet.py --macos-create-app-bundle --macos-app-icon=resources/icon.png --disable-console
```
The result will be a single binary named `NUSGet` that contains everything required to run NUSGet. No dependencies are needed on the target system.