From adf5793ccdcbd3b1bd997102304d11665fdcaf7c Mon Sep 17 00:00:00 2001 From: Uwe Kindler Date: Fri, 22 Oct 2021 11:47:27 +0200 Subject: [PATCH] Fixed Windows Qt 5.15 build --- ads.pri | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ads.pri b/ads.pri index 79e1fff..61a4599 100644 --- a/ads.pri +++ b/ads.pri @@ -1,7 +1,12 @@ CONFIG(debug, debug|release){ win32 { - LIBS += -lqtadvanceddockingd + versionAtLeast(QT_VERSION, 5.15.0) { + LIBS += -lqtadvanceddocking + } + else { + LIBS += -lqtadvanceddockingd + } } else:mac { LIBS += -lqtadvanceddocking_debug