mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
Build the cx_Freeze Windows GUI in window mode instead of console mode
This commit is contained in:
parent
dbf4af02ac
commit
52ef78a007
6
setup.py
6
setup.py
@ -76,8 +76,6 @@ os = platform.system()
|
||||
|
||||
if os == 'Windows':
|
||||
from cx_Freeze import setup, Executable
|
||||
#base = "Win32GUI"
|
||||
base = None
|
||||
setup(
|
||||
name="onionshare",
|
||||
version=version,
|
||||
@ -91,8 +89,8 @@ if os == 'Windows':
|
||||
}
|
||||
},
|
||||
executables=[
|
||||
Executable("install/scripts/onionshare", base=base),
|
||||
Executable("install/scripts/onionshare-gui", base=base)
|
||||
Executable("install/scripts/onionshare", base=None),
|
||||
Executable("install/scripts/onionshare-gui", base="Win32GUI")
|
||||
]
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user