update setup for newer cx_Freeze #2
This commit is contained in:
parent
fb8229fda5
commit
e04fbd1d77
2
setup.py
2
setup.py
|
@ -66,7 +66,7 @@ exes = []
|
||||||
for script, scriptname in scripts.items():
|
for script, scriptname in scripts.items():
|
||||||
exes.append(cx_Freeze.Executable(
|
exes.append(cx_Freeze.Executable(
|
||||||
script=script,
|
script=script,
|
||||||
targetName=scriptname + ("" if sys.platform == "linux" else ".exe"),
|
target_name=scriptname + ("" if sys.platform == "linux" else ".exe"),
|
||||||
icon=icon,
|
icon=icon,
|
||||||
))
|
))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue