Enable windows build
This commit is contained in:
parent
ee18dcab31
commit
3979a806b0
3
Makefile
3
Makefile
|
@ -31,6 +31,9 @@ preparewheel:
|
||||||
build_wheel:
|
build_wheel:
|
||||||
python3 setup.py sdist bdist_wheel
|
python3 setup.py sdist bdist_wheel
|
||||||
|
|
||||||
|
build_win_exe:
|
||||||
|
python -m PyInstaller sideband.spec --noconfirm
|
||||||
|
|
||||||
release: build_wheel apk fetchapk
|
release: build_wheel apk fetchapk
|
||||||
|
|
||||||
upload:
|
upload:
|
||||||
|
|
|
@ -42,12 +42,13 @@ exe = EXE(
|
||||||
a.scripts,
|
a.scripts,
|
||||||
[],
|
[],
|
||||||
exclude_binaries=True,
|
exclude_binaries=True,
|
||||||
name='main',
|
name='Sideband',
|
||||||
|
icon="sbapp\\assets\\icon.png",
|
||||||
debug=False,
|
debug=False,
|
||||||
bootloader_ignore_signals=False,
|
bootloader_ignore_signals=False,
|
||||||
strip=False,
|
strip=False,
|
||||||
upx=True,
|
upx=True,
|
||||||
console=True,
|
console=False,
|
||||||
disable_windowed_traceback=False,
|
disable_windowed_traceback=False,
|
||||||
argv_emulation=False,
|
argv_emulation=False,
|
||||||
target_arch=None,
|
target_arch=None,
|
||||||
|
|
Loading…
Reference in New Issue