donate-cpu.py: Enable new libraries (planned after release of 1.88) (#1940)
Tested locally
This commit is contained in:
parent
bf4e1ef790
commit
fd3e1ceefc
|
@ -40,7 +40,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.22"
|
CLIENT_VERSION = "1.1.23"
|
||||||
|
|
||||||
|
|
||||||
def check_requirements():
|
def check_requirements():
|
||||||
|
@ -254,19 +254,19 @@ def scan_package(work_path, cppcheck_path, jobs):
|
||||||
libraries = ' --library=posix --library=gnu'
|
libraries = ' --library=posix --library=gnu'
|
||||||
|
|
||||||
library_includes = {'boost': ['<boost/'],
|
library_includes = {'boost': ['<boost/'],
|
||||||
# 'cppunit': ['<cppunit/'], <- Enable after release of 1.88
|
'cppunit': ['<cppunit/'],
|
||||||
'googletest': ['<gtest/gtest.h>'],
|
'googletest': ['<gtest/gtest.h>'],
|
||||||
'gtk': ['<gtk/gtk.h>', '<glib.h>', '<glib/'],
|
'gtk': ['<gtk/gtk.h>', '<glib.h>', '<glib/'],
|
||||||
# 'libcerror': ['<libcerror.h>'], <- Enable after release of 1.88
|
'libcerror': ['<libcerror.h>'],
|
||||||
'microsoft_sal': ['<sal.h>'],
|
'microsoft_sal': ['<sal.h>'],
|
||||||
'motif': ['<X11/', '<Xm/'],
|
'motif': ['<X11/', '<Xm/'],
|
||||||
# 'nspr': ['<prtypes.h>', '"prtypes.h"'], <- Enable after release of 1.88
|
'nspr': ['<prtypes.h>', '"prtypes.h"'],
|
||||||
# 'opengl': ['<GL/gl.h>', '<GL/glu.h>', '<GL/glut.h>'], <- Enable after release of 1.88
|
'opengl': ['<GL/gl.h>', '<GL/glu.h>', '<GL/glut.h>'],
|
||||||
'python': ['<Python.h>', '"Python.h"'],
|
'python': ['<Python.h>', '"Python.h"'],
|
||||||
'qt': ['<QApplication>', '<QString>', '<QWidget>', '<QtWidgets>', '<QtGui'],
|
'qt': ['<QApplication>', '<QString>', '<QWidget>', '<QtWidgets>', '<QtGui'],
|
||||||
'ruby': ['<ruby.h>', '<ruby/'],
|
'ruby': ['<ruby.h>', '<ruby/'],
|
||||||
'sdl': ['<SDL.h>'],
|
'sdl': ['<SDL.h>'],
|
||||||
# 'sqlite3': ['<sqlite3.h>'], <- Enable after release of 1.88
|
'sqlite3': ['<sqlite3.h>'],
|
||||||
'tinyxml2': ['<tinyxml2', '"tinyxml2'],
|
'tinyxml2': ['<tinyxml2', '"tinyxml2'],
|
||||||
'wxwidgets': ['<wx/', '"wx/'],
|
'wxwidgets': ['<wx/', '"wx/'],
|
||||||
'zlib': ['<zlib.h>'],
|
'zlib': ['<zlib.h>'],
|
||||||
|
|
Loading…
Reference in New Issue