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

Bundled UnRAR with Windows binary

This commit is contained in:
Paweł Jastrzębski
2013-09-14 17:57:11 +02:00
parent 08a342c909
commit 1bfa0eb9c7
2 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View File

@@ -7,4 +7,4 @@ dist
kindlegen*
.DS_Store
Thumbs.db
UnRAR.exe
/UnRAR.exe

View File

@@ -41,7 +41,7 @@ elif platform == "win32":
from cx_Freeze import setup, Executable
base = "Win32GUI"
extra_options = dict(
options={"build_exe": {"include_files": ['LICENSE.txt'], "compressed": True}},
options={"build_exe": {"include_files": ['LICENSE.txt', ['other/UnRAR.exe', 'UnRAR.exe']], "compressed": True}},
executables=[Executable(MAIN,
base=base,
targetName="KCC.exe",