diff options
| author | Paweł Jastrzębski <[email protected]> | 2014-01-20 22:26:50 +0100 |
|---|---|---|
| committer | Paweł Jastrzębski <[email protected]> | 2014-01-20 22:26:50 +0100 |
| commit | 786d2a9e1f313305b88e1b83d1023402e9c4b1d1 (patch) | |
| tree | 8389376f2a30511187d35ebd7e381354d59a72ff /setup.py | |
| parent | Linux: Completly disabled QSystemTrayIcon (diff) | |
| download | kcc-786d2a9e1f313305b88e1b83d1023402e9c4b1d1.tar.gz kcc-786d2a9e1f313305b88e1b83d1023402e9c4b1d1.tar.bz2 kcc-786d2a9e1f313305b88e1b83d1023402e9c4b1d1.zip | |
Added option to select output directory
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py index 8f5e2f1..6e5b5b9 100755 --- a/setup.py +++ b/setup.py @@ -52,9 +52,9 @@ if platform == "darwin": ) ) elif platform == "win32": - import platform + import platform as arch from cx_Freeze import setup, Executable - if platform.architecture()[0] == '64bit': + if arch.architecture()[0] == '64bit': library = 'libEGL64.dll' else: library = 'libEGL32.dll' |