Skip to content

Commit

Permalink
Fixed zmq and input interfaces on windows exe build
Browse files Browse the repository at this point in the history
  • Loading branch information
ataffanel committed Aug 20, 2015
1 parent ff24994 commit ca91d16
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/cfclient/utils/input/inputinterfaces/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
found_interfaces = [os.path.splitext(os.path.basename(f))[0] for
f in glob.glob(os.path.dirname(__file__) + "/[A-Za-z]*.py")]
if len(found_interfaces) == 0:
found_readers = [os.path.splitext(os.path.basename(f))[0] for
found_interfaces = [os.path.splitext(os.path.basename(f))[0] for
f in glob.glob(os.path.dirname(__file__) +
"/[A-Za-z]*.pyc")]

Expand Down
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,12 @@
"cfclient.ui.*",
"cfclient.ui.tabs.*",
"cfclient.ui.widgets.*",
"cfclient.ui.dialogs.*"],
"excludes": ["AppKit"],
"cfclient.ui.dialogs.*",
"cfclient.utils.input.inputreaders.*",
"cfclient.utils.input.inputinterfaces.*",
'zmq.backend.cython'],
"excludes": ["AppKit", 'zmq.libzmq'],
'dll_excludes': ['libzmq.pyd'],
"skip_archive": True}})

toplevel_data_files.append('SDL2.dll')
Expand Down

0 comments on commit ca91d16

Please sign in to comment.