1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-12 17:26:23 +00:00

Win32 section was doubled

It builds correctly on Win32. Please define "problematic files".
This commit is contained in:
Paweł Jastrzębski
2013-03-09 17:57:10 +01:00
parent 9709bc9c12
commit bba0223efc

View File

@@ -45,16 +45,6 @@ if sys.platform == "darwin":
elif sys.platform == 'win32':
from cx_Freeze import setup, Executable
base = "Win32GUI"
extra_options = dict(
executables=[Executable("kcc.py", base=base, icon='comic2ebook.ico',
appendScriptToExe=True, appendScriptToLibrary=False)],
options=dict(
build_exe=dict(
compressed=True
)
)
)
base = "Win32GUI"
extra_options = dict(
options={"build_exe": {"include_files": includefiles, 'excludes': excludes, 'compressed': True}},
executables=[Executable(MAIN,