From 9b1066f0bc5d4210202a25a001476818793daedd Mon Sep 17 00:00:00 2001 From: Sebastian Date: Tue, 9 Jul 2019 15:59:00 +0200 Subject: [PATCH] donate-cpu.py: Enable sqlite3 library for local includes. (#1973) Many projects use a local copy of the sqlite3 library and several of them use local includes. --- tools/donate-cpu.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/donate-cpu.py b/tools/donate-cpu.py index 3b2e61c7a..a70c48508 100644 --- a/tools/donate-cpu.py +++ b/tools/donate-cpu.py @@ -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.23" +CLIENT_VERSION = "1.1.24" def check_requirements(): @@ -267,7 +267,7 @@ def scan_package(work_path, cppcheck_path, jobs): 'qt': ['', '', '', '', '', ''], - 'sqlite3': [''], + 'sqlite3': ['', '"sqlite3.h"'], 'tinyxml2': [''],