diff options
| author | Paweł Jastrzębski <[email protected]> | 2013-09-14 17:57:11 +0200 |
|---|---|---|
| committer | Paweł Jastrzębski <[email protected]> | 2013-09-14 17:57:11 +0200 |
| commit | 1bfa0eb9c782260607c9a63ae2e5e632fe76e8b4 (patch) | |
| tree | 6188d0dcd5565b25b7f173c1dd33330078ec7fc6 | |
| parent | Webtoon mode tweaks (diff) | |
| download | kcc-1bfa0eb9c782260607c9a63ae2e5e632fe76e8b4.tar.gz kcc-1bfa0eb9c782260607c9a63ae2e5e632fe76e8b4.tar.bz2 kcc-1bfa0eb9c782260607c9a63ae2e5e632fe76e8b4.zip | |
Bundled UnRAR with Windows binary
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | setup.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore index 24db16d..dc4e08c 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,4 @@ dist kindlegen* .DS_Store Thumbs.db -UnRAR.exe +/UnRAR.exe diff --git a/setup.py b/setup.py index c17d4e6..ebe2bf3 100644 --- a/setup.py +++ b/setup.py @@ -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", |