Enable windows build
This commit is contained in:
parent
ee18dcab31
commit
3979a806b0
3
Makefile
3
Makefile
|
@ -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:
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue