Skip to content

Commit

Permalink
Merge pull request #1707 from Be-ing/2.1_windows_build
Browse files Browse the repository at this point in the history
fix 2.1 build with Qt4 on Windows
  • Loading branch information
Be-ing authored Jun 11, 2018
2 parents 4302cd0 + 688312e commit 786452e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build/depends.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,8 +446,10 @@ def configure(self, build, conf):
build.env.Append(LIBS = 'qico')
build.env.Append(LIBS = 'qsvg')
build.env.Append(LIBS = 'qtga')
build.env.Append(LIBS = 'qgif')
build.env.Append(LIBS = 'qjpeg')
# not needed with Qt4
if qt5:
build.env.Append(LIBS = 'qgif')
build.env.Append(LIBS = 'qjpeg')

# accessibility plugins (gone in Qt5)
if not qt5:
Expand Down

0 comments on commit 786452e

Please sign in to comment.