Skip to content

Commit

Permalink
don't fail 'configure' if qt5 runtime library directory wasn't found #31
Browse files Browse the repository at this point in the history
  • Loading branch information
pustotnik committed Feb 23, 2022
1 parent e2a618f commit f9f83e4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/zenmake/zm/features/qt5.py
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,8 @@ def findDir(libName):
else:
dirpath = findDir(qtCoreStLibName)
if not dirpath:
conf.fatal("Could not find Qt5 runtime library directory")
log.warn("Could not find Qt5 runtime library directory")
return

conf.env['QT5_RT_LIBPATH'] = rtLibPath

Expand Down

0 comments on commit f9f83e4

Please sign in to comment.