donate-cpu.py: Enable detection of new library configurations (#2139)
This commit is contained in:
parent
76d8254df9
commit
901565233b
|
@ -40,7 +40,7 @@ import platform
|
|||
# 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
|
||||
# changes)
|
||||
CLIENT_VERSION = "1.1.31"
|
||||
CLIENT_VERSION = "1.1.32"
|
||||
|
||||
|
||||
def check_requirements():
|
||||
|
@ -273,13 +273,13 @@ def scan_package(work_path, cppcheck_path, jobs):
|
|||
'googletest': ['<gtest/gtest.h>'],
|
||||
'gtk': ['<gtk/gtk.h>', '<glib.h>', '<glib/', '<gnome.h>'],
|
||||
'libcerror': ['<libcerror.h>'],
|
||||
# 'libcurl': ['<curl/curl.h>'], <= enable after release of version 1.89
|
||||
# 'lua': ['<lua.h>', '"lua.h"'], <= enable after release of version 1.89
|
||||
'libcurl': ['<curl/curl.h>'],
|
||||
'lua': ['<lua.h>', '"lua.h"'],
|
||||
'microsoft_sal': ['<sal.h>'],
|
||||
'motif': ['<X11/', '<Xm/'],
|
||||
'nspr': ['<prtypes.h>', '"prtypes.h"'],
|
||||
'opengl': ['<GL/gl.h>', '<GL/glu.h>', '<GL/glut.h>'],
|
||||
# 'openmp': ['<omp.h>'], <= enable after release of version 1.89
|
||||
'openmp': ['<omp.h>'],
|
||||
'python': ['<Python.h>', '"Python.h"'],
|
||||
'qt': ['<QApplication>', '<QList>', '<QObject>', '<QString>', '<QWidget>', '<QtWidgets>', '<QtGui'],
|
||||
'ruby': ['<ruby.h>', '<ruby/'],
|
||||
|
|
Loading…
Reference in New Issue