diff options
| author | Paweł Jastrzębski <[email protected]> | 2014-01-17 12:34:05 +0100 |
|---|---|---|
| committer | Paweł Jastrzębski <[email protected]> | 2014-01-17 12:34:05 +0100 |
| commit | b0c6315feefb3a265ff1870f06a1c5b442ec9bc5 (patch) | |
| tree | be8ad14afa0a6ad3e810fb43426f37a48978d776 /setup.py | |
| parent | Updated OSX setup (diff) | |
| download | kcc-b0c6315feefb3a265ff1870f06a1c5b442ec9bc5.tar.gz kcc-b0c6315feefb3a265ff1870f06a1c5b442ec9bc5.tar.bz2 kcc-b0c6315feefb3a265ff1870f06a1c5b442ec9bc5.zip | |
Updated Windows setup + OSX fix
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/setup.py b/setup.py index c8a6e38..3c83f75 100644 --- a/setup.py +++ b/setup.py @@ -59,7 +59,7 @@ elif platform == "win32": ['other/7za.exe', '7za.exe'], ['other/Additional-LICENSE.txt', 'Additional-LICENSE.txt'] ], "compressed": True, - "excludes": ['Tkinter']}}, + "excludes": ['tkinter']}}, executables=[Executable(MAIN, base=base, targetName="KCC.exe", @@ -89,7 +89,7 @@ setup( if platform == "darwin": from os import chmod, makedirs from shutil import copyfile - makedirs('dist/' + NAME + '.app/Contents/PlugIns/platform') - copyfile('other/libqcocoa.dylib', 'dist/' + NAME + '.app/Contents/PlugIns/platform') + makedirs('dist/' + NAME + '.app/Contents/PlugIns/platforms') + copyfile('other/libqcocoa.dylib', 'dist/' + NAME + '.app/Contents/PlugIns/platforms/libqcocoa.dylib') chmod('dist/' + NAME + '.app/Contents/Resources/unrar', 0o777) chmod('dist/' + NAME + '.app/Contents/Resources/7za', 0o777) \ No newline at end of file |