donate-cpu.py: Improve Qt library detection

Tested locally
This commit is contained in:
versat 2019-02-11 15:38:28 +01:00
parent 909de488c2
commit cf00e0383d
1 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ import platform
# Version scheme (MAJOR.MINOR.PATCH) should orientate on "Semantic Versioning" https://semver.org/ # Version scheme (MAJOR.MINOR.PATCH) should orientate on "Semantic Versioning" https://semver.org/
# Every change in this script should result in increasing the version number accordingly (exceptions may be cosmetic # Every change in this script should result in increasing the version number accordingly (exceptions may be cosmetic
# changes) # changes)
CLIENT_VERSION = "1.1.1" CLIENT_VERSION = "1.1.2"
def checkRequirements(): def checkRequirements():
@ -234,7 +234,7 @@ def scanPackage(workPath, cppcheckPath, jobs, fast):
libraries += ' --library=motif' libraries += ' --library=motif'
if os.path.exists(cppcheckPath + '/cfg/python.cfg') and hasInclude('temp', ['<Python.h>']): if os.path.exists(cppcheckPath + '/cfg/python.cfg') and hasInclude('temp', ['<Python.h>']):
libraries += ' --library=python' libraries += ' --library=python'
if hasInclude('temp', ['<QString>', '<QtWidgets>', '<QtGui/']): if hasInclude('temp', ['<QApplication>', '<QString>', '<QWidget>', '<QtWidgets>', '<QtGui']):
libraries += ' --library=qt' libraries += ' --library=qt'
if hasInclude('temp', ['<wx/', '"wx/']): if hasInclude('temp', ['<wx/', '"wx/']):
libraries += ' --library=wxwidgets' libraries += ' --library=wxwidgets'