Enable windows build

This commit is contained in:
Mark Qvist 2024-11-27 14:07:48 +01:00
parent ee18dcab31
commit 3979a806b0
2 changed files with 6 additions and 2 deletions

View File

@ -31,6 +31,9 @@ preparewheel:
build_wheel:
python3 setup.py sdist bdist_wheel
build_win_exe:
python -m PyInstaller sideband.spec --noconfirm
release: build_wheel apk fetchapk
upload:

View File

@ -42,12 +42,13 @@ exe = EXE(
a.scripts,
[],
exclude_binaries=True,
name='main',
name='Sideband',
icon="sbapp\\assets\\icon.png",
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=True,
console=False,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,