donate-cpu.py: Improve Python library detection.
The official documentation recommends to include the Python C API via `#include "Python.h"`: https://docs.python.org/3/c-api/intro.html And many projects do it exactly this way, that is why the client script often does not detect the usage of the Python C API.
This commit is contained in:
parent
49f2fd6d4a
commit
4e051ef865
|
@ -38,7 +38,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.15"
|
||||
CLIENT_VERSION = "1.1.16"
|
||||
|
||||
|
||||
def checkRequirements():
|
||||
|
@ -242,7 +242,7 @@ def scanPackage(workPath, cppcheckPath, jobs, fast):
|
|||
'microsoft_sal': ['<sal.h>'],
|
||||
'motif': ['<X11/', '<Xm/'],
|
||||
#'opengl': ['<GL/gl.h>', '<GL/glu.h>', '<GL/glut.h>'], <- Enable after release of 1.88
|
||||
'python': ['<Python.h>'],
|
||||
'python': ['<Python.h>', '"Python.h"'],
|
||||
'qt': ['<QApplication>', '<QString>', '<QWidget>', '<QtWidgets>', '<QtGui'],
|
||||
'ruby': ['<ruby.h>', '<ruby/'],
|
||||
'sdl': ['<SDL.h>'],
|
||||
|
|
Loading…
Reference in New Issue