Skip to content

Commit

Permalink
fix build on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
zdimension committed Apr 18, 2018
1 parent 25b0059 commit 5153f2b
Show file tree
Hide file tree
Showing 2 changed files with 9,718 additions and 9,716 deletions.
4 changes: 3 additions & 1 deletion src/tools/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

from PyQt5.QtCore import QLibraryInfo
import subprocess
import sys
import os

subprocess.call([
"pyinstaller",
Expand All @@ -13,7 +15,7 @@
"colorsys",
"--windowed",
"--add-data",
r'%s;PyQt5\Qt\translations' % QLibraryInfo.location(QLibraryInfo.TranslationsPath),
os.pathsep.join([QLibraryInfo.location(QLibraryInfo.TranslationsPath), "PyQt5/Qt/translations"]),
"-n",
"turing",
"-y",
Expand Down
Loading

0 comments on commit 5153f2b

Please sign in to comment.