Skip to content

Commit adf5793

Browse files
Fixed Windows Qt 5.15 build
1 parent de05ddd commit adf5793

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

ads.pri

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11

22
CONFIG(debug, debug|release){
33
win32 {
4-
LIBS += -lqtadvanceddockingd
4+
versionAtLeast(QT_VERSION, 5.15.0) {
5+
LIBS += -lqtadvanceddocking
6+
}
7+
else {
8+
LIBS += -lqtadvanceddockingd
9+
}
510
}
611
else:mac {
712
LIBS += -lqtadvanceddocking_debug

0 commit comments

Comments
 (0)