From d345f490b65c641e55acc7862554106aa2873ad5 Mon Sep 17 00:00:00 2001 From: Sebastian Lohff Date: Thu, 30 Jun 2022 23:21:19 +0200 Subject: [PATCH] Make afutrainer.pro qt5 ready Instead of qt we now specify widgets (recommended in a migration guide). We are also linking against the system zlib to find the otherwise missing symbol "inflateEnd". --- afutrainer.pro | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/afutrainer.pro b/afutrainer.pro index bfb55ae..227b35b 100644 --- a/afutrainer.pro +++ b/afutrainer.pro @@ -5,7 +5,8 @@ else { TEMPLATE = app } TARGET = afutrainer -QT += qt gui xml +QT += widgets gui xml +LIBS += -lz HEADERS = mainwindow.h \ catalogmodel.h \