1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-13 09:46:25 +00:00

Update setup with Windows icon

This commit is contained in:
Ciro Mattia Gonano
2013-03-06 23:16:50 +01:00
parent 5c0964c8fa
commit 2dab7a707b
2 changed files with 7 additions and 1 deletions

BIN
resources/comic2ebook.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 KiB

View File

@@ -43,7 +43,13 @@ elif sys.platform == 'win32':
from cx_Freeze import setup, Executable from cx_Freeze import setup, Executable
base = "Win32GUI" base = "Win32GUI"
extra_options = dict( extra_options = dict(
executables=[Executable("kcc.py", base=base)] executables=[Executable("kcc.py", base=base, icon='resources/comic2ebook.ico',
appendScriptToExe=True, appendScriptToLibrary=False)],
options=dict(
build_exe=dict(
compressed=True
)
)
) )
else: else:
extra_options = dict( extra_options = dict(