mirror of
https://github.com/onionshare/onionshare.git
synced 2025-06-21 04:54:14 -04:00
Build the cx_Freeze Windows GUI in window mode instead of console mode
This commit is contained in:
parent
4cb90dc96d
commit
df6d5d74de
1 changed files with 2 additions and 4 deletions
6
setup.py
6
setup.py
|
@ -76,8 +76,6 @@ os = platform.system()
|
||||||
|
|
||||||
if os == 'Windows':
|
if os == 'Windows':
|
||||||
from cx_Freeze import setup, Executable
|
from cx_Freeze import setup, Executable
|
||||||
#base = "Win32GUI"
|
|
||||||
base = None
|
|
||||||
setup(
|
setup(
|
||||||
name="onionshare",
|
name="onionshare",
|
||||||
version=version,
|
version=version,
|
||||||
|
@ -91,8 +89,8 @@ if os == 'Windows':
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
executables=[
|
executables=[
|
||||||
Executable("install/scripts/onionshare", base=base),
|
Executable("install/scripts/onionshare", base=None),
|
||||||
Executable("install/scripts/onionshare-gui", base=base)
|
Executable("install/scripts/onionshare-gui", base="Win32GUI")
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue