From fe236dbdc480a0b0952f3303a6cac37736484efe Mon Sep 17 00:00:00 2001 From: Sebastian Date: Thu, 12 Sep 2019 15:14:18 +0200 Subject: [PATCH] donate-cpu.py: Improve Qt library detection (#2171) Some projects only use this (older?) style of Qt header inclusion. There are (older) books and examples which use this style, too. It seems to be perfectly valid, so we should support it. --- 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 fbec66e39..feb33ad7d 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.36" +CLIENT_VERSION = "1.1.37" def check_requirements(): @@ -444,7 +444,7 @@ def get_libraries(): 'opengl': ['', '', ''], 'openmp': [''], 'python': ['', '"Python.h"'], - 'qt': ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], 'sqlite3': ['', '"sqlite3.h"'],