Skip to content

Commit

Permalink
Fix setup errors
Browse files Browse the repository at this point in the history
Squashed commit:

[c7ff70c] Fix error with missed Qt library

[8383e27] Fix msvcr100.dll error in setup script
  • Loading branch information
citizen-stig committed Jul 22, 2014
1 parent a7772c5 commit 2bd4803
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@
path = ["pyjtt"] + sys.path
icon_path = os.path.join("resources", "icons", "clock.ico")
build_exe_options = {"path": path,
"icon": icon_path}
"icon": icon_path,
"include_msvcr": True, #skip error msvcr100.dll missing,
# Fix error with "This application failed to start because it could not find or load the QT platform plugin "windows"."
"include_files": ['C:\Python34\Lib\site-packages\PyQt5\libEGL.dll']
}

# http://msdn.microsoft.com/en-us/library/windows/desktop/aa371847(v=vs.85).aspx
shortcut_table = [
Expand Down

0 comments on commit 2bd4803

Please sign in to comment.